.wrapper {
    font-family: "Barlow Semi Condensed", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(134.34% 134.34% at 50% 0%, #1f3757 0%, #131537 100%);
}
.scoreboard {
    width: 700px;
    border: 1px solid white;
    border-radius: 15px;
    margin-top: 50px;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    margin-left: 30px;
}

.score {
    width: 150px;
    height: 114px;
    background-color: white;
    border-radius: 8px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score p {
    color: #2a46c0;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 2.5px;
}
.score h1 {
    color: #565468;
    font-size: 56px;
    font-weight: 700;
}

.hands {
    background-image: url("/images/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;
    display: none;
}

.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;
}

.handImageContainter{
    display: flex;
    justify-content: center;
}

.referee {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.referee h1 {
    font-size: 45px;
    font-weight: 600;
}

.newGame {
    background-color: white;
    padding: 12px 24px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    cursor: pointer;
    color: #3b4363;
    transition: all 0.15s;
}

.newGame:hover {
    background-color: bisque;
    transform: translate3d(0px, -2px, 0px);
}

