
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-color: bisque;
}

header{
    background-color:rgb(4, 86, 75);
    color: white;
    position: relative;
    top: 0px;
    width: 100%;
    height: 10vmin;
    text-align: center;
    padding-top: 2vmin;
    box-sizing: border-box;
    font-size: 2vmin;

}
.game-part{
    width: 100%;
    height: 40vmin;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5vmin;
}
.circle{
    border-radius: 50%;
    width: 30vmin;
    height: 30vmin;
    border: .4vmin solid black;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: 0 0 2vmin black;
}
.score{
    width: 100%;
    height: 20vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10vmin;

}
.you, .comp{
    width: 20vmin;
    height: 20vmin;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vmin;
}
.res{
    width: 100%;
    height: 15vmin;
    display: flex;
    justify-content: center;
    align-items: center;
}
.winner{
    position: relative;
    background-color: rgb(21, 124, 124);
    padding: 2vmin;
    border-radius: 1vmin;
    border: .3vmin solid black;
    font-size: 3vmin;
    color: white;
    box-shadow: 0 0 2vmin black;
    
}
.circle1{
    background-image: url('images/rock.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.circle2{
    background-image: url('images/paper.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.circle3{
    background-image: url('images/scissors.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.circle:hover{
    border: .6vmin solid black;
    opacity: .9;
}
.circle:active{
    opacity: .6;
    border: 1vmin solid black;
}
.restart{
    height: 15vmin;
    display: flex;
    justify-content: center;
    align-items: center;

}
button{
     padding: 1.7vmin 4vmin;
    border-radius: 1vmin;
    border:.3vmin solid black ;
    font-size: 3vmin;
    cursor: pointer;
    background-color: rgb(23, 23, 192);
    color:white;
    box-shadow: 0 0 2vmin black;
}
button:hover{
    border:.4vmin solid black ;
    background-color: rgba(23, 23, 192, 0.95);
}
button:active{
    background-color: rgba(23, 23, 192, 0.89);
}
