*{
    margin: 0;
    padding: 0;
    text-align: center;
}
.heading{
 
    background-color:rgb(43, 43, 81);
    color: white;
    height:50px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.choice{
    height: 115px;
    width: 115px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.choice:hover{
    cursor: pointer;
    background-color: rgb(43, 43, 81) ;
}
img{
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}
.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    gap: 3rem;
}
.score-board{
    display: flex;
    justify-content: center;
    font-size: 2rem;
    gap: 5rem;
    margin-top: 3rem;
}

#user-score,
#comp-score{
    font-size: 3rem;
}
.results{
    margin-top: 3rem;
    

}
#msg{
    background-color:rgb(43, 43, 81);
    font-size: 2rem;
    color: white;
    border-radius: 0.25rem; 
    display: inline;
    

}