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

h1 {
    background-color: #081b31;
    color: #ffffff;
    height: 5rem;
    line-height: 5rem;
}

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

.choice1 {
    background-color: #A8E6CF;
}

.choice2 {
    background-color: #FFD3B6;  
}

.choice3 {
    background-color: #D4A5FF;
}

img {
    padding: 1.5rem;
    height: 180px;
    width: 180px;
    object-fit: cover;   
    
}

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

.choice1:hover, .choice2:hover, .choice3:hover {
    border: 5px solid #B779FF;
    cursor: pointer;
    filter: brightness(85%);
}

.score-board {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-top: 2rem;
    gap: 5rem;
}

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

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

#msg {
    font-size: 2rem;
    padding: 1.5rem;
    background-color: #081b31;
    display: inline;
    color: #ffffff;
    border-radius: 1rem;
} 

/* Responsiveness */
@media (max-width: 600px) {
    .choices {
        flex-direction: column;
    }

    #msg{
        display: flex;
        flex-wrap: wrap;
    }
}

