*{
    padding: 0;
    margin: 0;
    text-align: center;
}
body{
    background-color: darkseagreen;
}
h1{
    background-color: rgb(5, 5, 59);
    color: white;
    height: 4rem;
    line-height: 4rem;
}
.choices{
    display: flex;
    margin-top: 4rem;
    justify-content: center;
    gap: 3rem;
}
.choice{
    height: 150px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.choice:hover{
    border: 7px solid rgb(30, 62, 46);
}
img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.score-board{
    display: flex;
    justify-content: center;
    font-size: 2rem;
    gap: 3rem;
    margin-top: 4rem;
}
#user-score,#comp-score{
    font-size: 4rem;
}

.msg-container{
    margin-top: 4rem;
}
#msg{
    font-size:2rem ;
    background-color: rgb(36, 55, 113);
    color: white;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}
