*{
    margin:0;
    padding:0;
    text-align:center;
}
h1{
    background-color: #FF4788;
    color:#E7CEE3;
    height:100px;
    height:5rem;
    line-height:5rem ;
}
.choice{
    height: 170px;
    width: 170px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.choice:hover{
    cursor: pointer;
    background-color: #883677;
}
img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;  /*makes it round*/
}
.choices{
    display:flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}
.score-board{
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    gap:5rem;
}
#user-score,#comp-score{
    font-size: 2.5rem;
}
.msg-container{
    margin-top: 3rem;
   
}
#msg{
background-color:#FF4788;
color: #E7CEE3;
font-size:2rem;
display: inline;
padding:0.78rem;
 border-radius: 1rem;
}