* {
    margin: 0px;
    padding: 0px;
    text-align: center;
}
h1 {
    background-color: black;
    color: aquamarine;
    height: 5rem;
    line-height: 5rem;
}
.choice {
    width: 170px;
    height: 170px;
}
.choice:hover {
    opacity: 0.5;
    cursor: pointer;
    border: 2px solid black;
}
img {
    width: 150px;
    height: 150px;
    object-fit: cover;     /* ye image ko blur ni hone deta shrink waghera b */
    border-radius: 50%;
}
.choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}
.score-board {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-top: 3rem;
    gap: 5rem;
}
#user-score , #comp-score {
    font-size: 4rem;
}
.msg-container {
    margin-top: 4rem;
}
#msg {
    background-color: burlywood;
    font-size: 4rem;
    display: inline;
    padding: 1rem;
    border-radius: 2rem;
}
#msg:hover {
    opacity: 0.5;
    cursor: pointer;
}