*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}
h1{
    background-color: aquamarine;
    color: white;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 3rem;
}
.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 3.5rem;
}
.choice{
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
img{
    width: 9.2rem;
    height: 9.2rem;
    border-radius: 50%;
    object-fit: cover;
}
.choice:hover{
    background-color: black;
}
.score-board{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin-top: 3.5rem;
    gap: 4rem;
}
#user-score, #comp-score{
    font-size: 4.5rem;
}
.msg-container{
    margin-top: 4rem;
}
#msg{
    display: inline;
    background-color: aqua;
    font-size: 2.5rem;
    padding: 1rem;
    border-radius: 1rem;
}