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

h1{
    background-color: #880D1E;
    color: #CBEEF3;
    height: 5rem;
    line-height: 5rem;
}

body{
    background-color: #CBEEF3;
}

.choice {
    height: 165px;
    width: 165px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.choice:hover {
    cursor: pointer;
    background-color: #081b31;
}

.score-board{
    display: flex;
    justify-content: center;
    align-items: center;
    gap : 3rem;
    margin-top: 3rem;
    font-size: 2rem;
}

#user-score , #comp-score{
    font-size: 5rem;
    font-weight: bolder;
    color: #880D1E;
}

img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.choices{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
}

.msg-container{
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}

#msg{
    font-size: 2rem;
    background-color: #081b31;
    color: #CBEEF3;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}