*{
    margin: 0;
    padding: 0;
}
.head{
    background-color: darkslategrey;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4vw;
    font-style: italic;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: bisque;
}
.image{
    height: 23vh;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 50%;
}
#stone{
    background-image: url("xstone.png");
}
#paper{
    background-image: url("xpaper.png");
}
#scissors{
    background-image: url("xscissors.png");
}
.images{
    display: flex;
    justify-content: space-evenly;
    margin-top: 2vh;
    margin-bottom: 2vh;
    margin-left: 17vw;
    margin-right: 17vw;
    flex-wrap: wrap;
}
.int{
    display: flex;
    justify-self: center;
    font-size: xx-large;
    font-size: 3vw;
    font-weight: 700;
}
#meCount{
    display: flex;
    justify-self: center;
    flex-direction: column;
    margin-top: 2vh;
}
.me{
    margin-right: 2vw;
}
.comp{
    margin-left: 2vw;
}
#compCount{
    display: flex;
    justify-self: center;
    flex-direction: column;
    margin-top: 2vh;
}
.res{
    display:flex;
    justify-self: center;
    font-size: 3vw;
    font-style: italic;
    font-weight: 700;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 2vh;
    background-color: midnightblue;
    color: white;
    border: 0.5vw solid black;
    height: fit-content;
    width: fit-content;
    align-items: center;
    padding-left: 2vw;
    padding-right: 2vw;
    border-radius: 10vw;
    text-shadow: 0.1vw 0.2vw 0 black;
}
#stone:hover, #paper:hover, #scissors:hover{
    border: 1vh solid black;
}
.win{
    background-color: lime;
}
.loose{
    background-color: orangered;
}
.draw{
    background-color: midnightblue;
}
.lastDiv{
    margin-top: 3vh;
}
