*{
    margin: 0;
    padding: 0;
}
.nav-container{
    background-color: #081b31;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
h1{
    line-height: 5rem;
    height: 5rem;
}
.choices{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
    gap: 2rem;
}
.choice{
    height: 160px;
    width: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.choice:hover{
    /* opacity: 0.5; */
    cursor: pointer;
    background-color: #081b31;
}
img{
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.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;
    text-align: center;
}
.msg-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}
#msg{
    background-color: #081b31;
    color: bisque;
    font-size: 2rem;
    display: inline;
    padding: 1rem;
    border-radius: 10px;
}