*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    background-color: #081b08;
    color: #fff;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
}
.choice {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
 
}

img {
    height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 50%;
}
.choices {
display: flex;
margin-top: 3rem;
align-items: center;
justify-content: center;
gap: 20px;
}
.choice:hover {
    cursor: pointer;
    background-color: #081b08;
}
.score-board {
    display: flex;
    justify-content: center;
    gap: 200px;
    font-size: 20px;
    font-weight: 400;
}
.msg-container {
    text-align: center;
    font-size: 20px;
    margin-top: 3rem;
    font-weight: 800;
}
#user-score,#comp-score {
    font-size: 4rem;
}
#msg {
    background-color: #081b08;
    color: #fff;
    font-size: 2.5rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}