*{
    margin: 0px;
    padding: 0px;
    text-align: center;
}

h1{
    background-color: #081b31;
    color: white;
    height: 5rem;
    text-align: center;
    line-height: 5rem; /*trick to make text aline to center of the box */
}

.score-board {
    display: flex;
    justify-content: center;
    gap: 5rem;
    font-size: 2rem;
    margin: 3rem;

}

#user-score , #comp-score {
    font-size: 4rem;
}


#msg {
    background-color: #081b31;
    color: white;
    font-size: 2rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}

.msg-container {
    margin: 5rem;
}

.choices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 5rem;
}

.choice:hover {
    opacity: 0.85;
    cursor: pointer;
    background-color: #081b31;
}

.choice{
    height: 165px;
    width: 165px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}