* {
    margin: 0%;
    padding: 0%;
    text-align: center;
    background-color: #D4EBF8;
}

h1 {
    background-color: #081b31;
    color: #fff;
    line-height: 5rem;
    font-style: italic;
    font-size: 3rem;
}

.choice {
    height: 170px;
    width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choice:hover {
    cursor: pointer;
    background-color: rgb(222, 6, 45);
}

.score-board {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    font-size: 2rem;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin-top: 3rem;
}

#your-score,
#comp-score {
    font-size: 4rem;
}

.msg-container {
    margin-top: 5rem;
}

#msg {
    font-size: 2rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 200;
    background-color: navy;
    color: white;
    display: inline;
    padding: 1rem;
    border-radius: 2rem;
}


#game-reset {
    height: 1rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 700;
    background-color: black;
    color: white;
    display: inline;
    padding: 1rem;
    border-radius: 2rem;
    cursor: pointer;
}

.reset {
    margin-top: 10vh;
    opacity: 85%;
}




/*-------------------- RESPONSIVE BREAKPOINTS -------------------- */
/* Mobiles */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        line-height: 3rem;
    }

    .choices {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .choice {
        height: 30vw;
        width: 30vw;
    }

    #your-score,
    #comp-score {
        font-size: 2rem;
    }

    #msg {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    #game-reset {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}