body{
    padding: 2rem 0.5rem;
    height: 95vh;
}

header{
    width: 95%;
    padding: 0.5rem;
    border: 2px solid #606060;
}
header .logo img{
    width: 5rem;
}
.score-container{
    width: 90px;
    padding: 0.2rem 1rem;
    border-radius: 5px;
}
.score-container h3{
    font-size: 0.7rem;
    text-align: center;
}
.score-container h1{
    font-size: 2rem;
    margin-top: -0.3rem;
}

/* ------------------------------------ MAIN SECTION ------------------------------------ */
main{
    width: 95%;
    margin: 4rem auto;
    background-size: 180px;
}
.game-btn{
    width: 6rem;
    height: 6rem;
    margin: 0.5rem 1rem;
}
.game-btn img{
    width: 2rem;
}

/* PAPER BUTTON */
.paper-btn{
    border: 0.8rem solid #5671f5;
    box-shadow: 0px 5px 2px -1px rgba(0, 0, 0, 0.3), inset 0px 5px 2px -1px rgba(0, 0, 0, 0.3);
}
/* SCISSORS BUTTON */
.scissors-btn{
    border: 0.8rem solid hsl(39, 89%, 49%);
    box-shadow: 0px 5px 2px -1px rgba(0, 0, 0, 0.3), inset 0px 5px 2px -1px rgba(0, 0, 0, 0.3);
}
/* ROCK BUTTON */
.rock-btn{
    border: 0.8rem solid hsl(349, 71%, 52%);
    box-shadow: 0px 5px 2px -1px rgba(0, 0, 0, 0.3), inset 0px 5px 2px -1px rgba(0, 0, 0, 0.3);
}

/* ------------------------------------ RULES BUTTON ------------------------------------ */
.rules-btn{
    width: 6rem;
    height: 2rem;
    font-size: 0.5rem;
    line-height: 1.5rem;
    border-radius: 5px;
}
.reset-btn{
    width: 6rem;
    height: 2rem;
    font-size: 0.5rem;
    line-height: 1.5rem;
    border-radius: 5px;
}

/* ------------------------------------ RULES SECTION ------------------------------------ */
.rules{
    height: 100vh;
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.rules .rules-img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ------------------------------------ RESULT ------------------------------------ */
.result{
    justify-content: space-evenly;
}
.result div{
    margin-right: 1rem;
}
.final-result{
    position: absolute;
    bottom: 25%;
}
.final-result h3{
    padding: 0.5rem 2rem;
}
.final-result h1{
    font-size: 1.5rem;
}
.result h2{
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

/* WINNER ADD ON CLASS */
.winner{
    box-shadow: rgba(255, 255, 255, 0.05) 0px 0px 0px 20px,
     rgba(255, 255, 255, 0.04) 0px 0px 0px 40px,
     rgba(0, 0, 0, 0.3) 0px 4px 1px inset;
}