* {
    margin:0;
    padding:0;
    background-color: aliceblue;
    text-align: center;
}
h1{
    text-align: center;
    color: transparent;
    font-size: 5rem;
    -webkit-text-stroke: 3px; 
    -webkit-text-stroke-color: black;
    height: 7rem;
    line-height: 7rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.choice:hover {
    opacity: 50%;
    cursor: pointer;
    background-color: black;
    border-radius: 50%;
}
.choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 3rem;
}
.choice {
    height: 165px;
    display: flex;
    width: 165px;
    justify-content: center;
    align-items: center;
}
img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}
.score-board {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    gap: 2rem;
    margin-top: 2rem;
}
#user-score , #comp-score {
    font-size: 4rem;
}
.msg {
    color: black;
    height: 5rem;
    font-size: 2rem;
    margin-top: 5rem;
    background-color: transparent;
    display: inline;
    margin-top: 3rem;
}