* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    /* font-size: rem; */
}

h1 {
    background-color: #081b31;
    font-size: 3.7rem;
    line-height: 10vh;
    height: 10vh;
    color: white;
}

.choices {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.choice {
    border-radius: 50%;
    width: 15vw;
    height: 15vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choice:hover {
    cursor: pointer;
    background-color: rgb(48, 145, 205);
}

img {
    width: 14vw;
    height: 14vw;
    border-radius: 50%;
}

.scores {
    margin-top: 3rem;
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 4rem;
}
.message{
    height: 3rem;
}
#user-score,
#comp-score {
    font-size: 4vw;
}

.score h3 {
    font-size: 3rem;
}

#display {
    display: inline;
    font-size: 3rem;
    color: white;
    background-color: #081b31;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
}
.reset{
    padding: 10px;
    margin-top: 1.5rem;
}
button{
    color: white;
    font-size: 1.4rem;
    border: none;
    background-color: #453c45;
    padding: 4px 14px;
    border-radius: 16px;
    outline: none;
    cursor: pointer;
}
button:hover{
    background-color:#282228 ;
}
@media (max-width : 1300px) {
    * {
        font-size: 1rem;
    }

    h1 {
        font-size: 2.4rem;
        line-height: 5rem;
        height: 5rem;
    }

    .choices {
        margin-top: 3rem;
        gap: 1.5rem;
    }

    #user-score,
    #comp-score {
        font-size: 4.5rem;
    }

    .choice {
        width: 23vw;
        height: 23vw;
        margin-bottom: 0rem;
    }

    img {
        width: 22vw;
        height: 22vw;
    }
}

@media (max-width : 550px){
     .choices {
        margin-top: 3rem;
        gap: 0.7rem;
    }
    .scores {
        font-size: 1rem;
        margin-top: 50px;
    }
    .score #user-score ,#comp-score{
          font-size: 3.5rem;
    }
    .score h3{
        font-size: 2.6rem;
    }
    .choice {
        width: 29vw;
        height: 29vw;
        margin-bottom: 0rem;
    }

    img {
        width: 28vw;
        height: 28vw;
    }
    #display{
        font-size: 2rem;
    }
    .reset{
        margin-top: 2rem;
    }
}