@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@600&display=swap');

*{
    padding: 0;
    margin: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

body{
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: hsl(214, 47%, 23%);
    background: radial-gradient(ellipse at top, hsl(214, 47%, 23%) 0%, hsl(237, 49%, 15%) 100%);
}

.marginTop40{
    margin-top: 40px;
}

.mainContainer{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 50%;
}

.scoreMainContainer{
    display: flex;
    flex-direction: row;
    width: 90%;
    height: 20%;
    border: 2px solid gray;
    border-radius: 20px;
    padding: 0px 30px 0px 30px;
}

.titleContainer{
    display: flex;
    align-items: center;
    height: 100%;
    width: 50%;
    color: white;
}

.titleContainer img{
    width: auto;
    height: 75%;
}

.scoreContainer{
    display: flex;
    justify-content: right;
    align-items: center;
    height: 100%;
    width: 50%;
}

.scoreBox{
    height: 85%;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
}

.gameContainer{
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 60%;
    background-image: url('./images/bg-triangle.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 450px 70%;
}

.sign{
    height: 150px;
    width: 150px;
    background-color: white;
    border: 30px solid transparent;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.sign img{
    width: 60px;
    height: auto;
}

.paperContainer{
    background: linear-gradient(white, white) padding-box,
              linear-gradient(to top, hsl(230, 89%, 62%), hsl(230, 89%, 65%)) border-box;
}

.scissorsContainer{
    background: linear-gradient(white, white) padding-box,
              linear-gradient(to top, hsl(39, 89%, 49%), hsl(40, 84%, 53%)) border-box;
}

.rockContainer{
    position: relative;
    top: 65%;
    background: linear-gradient(white, white) padding-box,
              linear-gradient(to top, hsl(349, 71%, 52%), hsl(349, 70%, 56%)) border-box;
}

.resultMainContainer{
    
    margin-top: 50px;
    width: 150%;
    height: 60%;
    display: none;
    flex-direction: row;
    justify-content: space-around;
    color: white;
    font-size: 1.5em;
}

.pickedContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pickedBox{
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.opponentContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pickedOpponentBox{
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.resultContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
}

.resultContainer button{
    text-transform: uppercase;
    font-size: 20px;
    word-spacing: 5px;
    background-color: white;
    color: hsl(229, 25%, 31%);
    border-radius: 10px;
    border: none;
    width: 220px;
    height: 50px;
}

.resultContainer button:hover{
    cursor: pointer;
    color: hsl(349, 71%, 52%);
}

.pickedTemp{
    position: relative;
    top: 0;
}