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

h1{
    background-color: #272838;
    color: white;
    height: 5rem;
    /* text-align: center; */
    line-height: 5rem;
}
.choice{
    height: 210px;
    width: 210px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.choice:hover{
    
    background-color: #272838;
}
img{
    height: 190px;
    width: 190px;
    object-fit: cover;
    border-radius: 50%;
}
.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    margin-top: 5rem;
}

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

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

.msg-container{
    margin-top: 5rem;
}
#msg{
    background-color: #272838;
    color: white;
    font-size: 2rem;
    display: inline;
    /* margin-top: 8rem; */
    padding: 1rem;
    border-radius: 1rem;

}