* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Barlow Condensed", sans-serif;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    background: radial-gradient(#2a4c77, #131537);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scoreboard {
    width: 700px;
    border: 2px solid white;
    border-radius: 15px;
    margin-top: 30px;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.title {
    margin-left: 20px;
}
.score {
    width: 150px;
    height: 120px;
    background: white;
    border-radius: 10px;
    margin-right: 20px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.score h1 {
    color: #2a4c77;
    font-size: 56px;
}

.score p {
    color: rgb(37, 106, 196);
    font-size: 19px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1.8px;
}

.hands {
    background-image: url(/assets/triangle.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 500px;
    height: 500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 100px;
}

.scissors {
    margin-left: 22px;
}

.paper {
    margin-right: 22px;
}

.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: 50px;
    text-align: center;
}

.contest .handImageContainer {
    display: flex;
    justify-content: center;
}

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

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

.newGame {
    background-color: white;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    color: #3067ae;
    transition: all 0.15s;
}

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