*{
    margin: 0;
    padding: 0;
    text-align: center;
}

h1{
    background-color: darkblue;
    color: white;
    height: 5rem;
    line-height: 5rem;
}

.choice{
    height: 165px;
    width: 165px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choices{
    display: flex;
    justify-content: space-around;
    margin-top: 2.5rem;
}

.choice:hover{
    cursor: pointer;
    opacity: 0.7;
    background-color: darkblue;
}
img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.score-board{
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    font-size: 1.5rem;
}

#user-score, #computer-score{
    font-size: 3rem;
}

#msg{
    background-color: darkblue;
    color: white;
    font-size: 2rem;
    margin-top: 3rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 1rem;
}