*{
    margin: 0;
    padding: 0;
    background-color: grey;
    text-align: center;
}
h1{
    text-align: center;
    font-size: 4rem;
    background-color: black;
    color: white;
}

.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    gap: 3rem

}
.choice{
    height: 160px;
    width: 160px;
    border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;

}
.choice:hover{
    background-color:black;
    cursor: pointer;
}
img{
    height: 150px;
    width: 150px;
    object-fit: cover;
     border-radius: 50%;
     
    
}
.score-board{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    font-size: 3rem;
    gap: 5rem;
   
}
#user-choice, #com-choice{
    font-size: 4rem;
}

.message{
    text-align: center;
    margin-top: 5rem;
   
}
#msg{
     background-color: black;
     color: white;
    font-size: 3rem;
    inline-size: content;
    display: inline;
    padding: 1rem;
    border-radius: 20px;
}