*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
            font-family: "Barlow", sans-serif;
}
.wrapper{
    width: 100vw;
    height: 100vh;
    background: radial-gradient(
        134.34% 134.34% at 50% 0%,
        #1f3757 0%,
        #131537 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title{
    margin-left: 15px;
}
.scoreboard{
    display: flex;
    justify-content: space-between;
    height: 150px;
    width: 700px;
    border: 1px solid white;
    border-radius: 15px;
    margin-top: 50px;
    align-items: center;
}


.score{
    width: 150px;
    height: 114px;
    background-color: white;
    border-radius: 15px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.score h1{
    color:#565468;
    font-size: 56px;

}

.score p{
    color:#878EB6;
    font-size: 20px;
    font-weight: 600px;
    line-height: 15px;
    letter-spacing: 2.5px;
}

.hands{
    background-image: url("assets/triangle.png");
    background-repeat: no-repeat;
    background-position: center;
width:476px;
height: 430px;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 100px;
}

.scissors{
    margin-left: 20px;
}
.paper{
    margin-right: 20px;
}

.hands .hand{
    cursor: pointer;
    transition: all 0,25s;

}

.hands .hand:hover{
    transform: translate3d(0px, -8px, 0px);
}

.contest{
    width:900px;
    display: flex;
    margin-top: 50px;


}

.contest img{
    width:275px;
    height: 275px;
}

.contest >div{
flex:1;


}

.contest h1{
    color: white;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
    text-align: center;


}

.contest .handImageContainer{
    display: flex;
    justify-content: center;
}

.referee{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.referee h1{
    font-size: 20px;
}

.newGame{
    background-color: red;
    padding: 12px 24px;
    border-radius: 6px;
    width:110px;
    height: 110px;
    cursor: pointer;
    color:​hsl(229, 25%, 31%);
    transition: 0.15s;
    


}

.newGame:hover{
    color:bisque;
    transform: translate3d(0px, -2px,0px);

}

@media (max-width: 576px) { 


    
}