*{
    margin:0;
    text-align: center;
}
h1{
    text-align: center;
    color:aliceblue;
    background-color: black;
    margin-top: 0%;
    height:3rem;
}
.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:25px;
    margin: 5rem;
}
.choice{
    height: 200px;
    width: 200px;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;

}
.choice:hover{
    opacity: 50%;
}
img{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
}
.scoreboard{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10%;
    font-size: 2rem;
    margin-bottom: 45px;
}
#user-score, #comp-score{
    font-size: 4rem;
}
#msg{
    background-color: black;
    color: white;
    font-size: 2rem;
    display: inline;
    padding:1rem;
    border-radius: 15px;

}