* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Barlow Condensed", sans-serif;
}

.wrapper {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background: radial-gradient(
    134.34% 134.34% at 50% 0%,
    #1f3757 0%,
    #131537 100%
    );
}

.scoreboard {
    display: flex;
    align-items: center;
    width: 700px;
    border: 1px solid white;
    border-radius: 15px;
    margin-top: 50px;
    height: 150px;
    justify-content: space-between;
}

.scorecard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 150px;
    height: 114px;
    background-color: white;
    border-radius: 8px;
    text-align: center;
    margin-right: 30px;

}

.title {
    margin-left: 30px;
}

.scorecard h1 {
    color: #565468;
    font-size: 56px;
}

.scorecard p {
    color: #2a45c2;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 2.5px;
}

.hands {
    width: 476px;
    height: 430px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 100px;
    background-image: url(/Static/Images/triangle.png);
    background-repeat: no-repeat;
    background-position: center ;

}

.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: none;
    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: 20px;
    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: 45px;
}

.newGame {
    background-color: white;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    color: hsl(229, 25%, 31%);
    transition: all  0.25s;

}

.newGame:hover {
    background-color: bisque;
    transform: translate3d(0px, -2px, 0px);

}



















