*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-color: #F4F2EE;
    text-align: center;
}
h1{
    background-color: #161616;
    color: azure;
    height: 5rem;
    line-height: 5rem;
}
.choices{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 30px;
}

.choice{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin: 20px 20px;
}
.choice:hover{
    cursor: pointer;
    border: 3px solid #161616;
    }
.choice img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
}
/* score board styling  */
.score-board{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    font-weight: 500;
  gap: 5rem;
}
#user-score,#comp-score{
    font-size: 2.5rem;
    font-weight: 900;
}
/* text show qoute styling */
.msg-contain{
    margin-top: 3rem;

}
#msg{
    background-color: #161616;
    color: #F4F2EE;
    display: inline;
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 1rem;
}
#play-again{
    margin-top: 2rem ;
    background-color: #F1B24A;
    font-size: 1.5rem;
    color: #161616;
    font-weight: 500;
    border-radius: 0.5rem;
    text-decoration: none;
    padding: 0.5rem;
line-height: 1.5rem;
}
#play-again:hover{
    cursor: pointer;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.3);
}