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

h1{
    display: flex;
    justify-content: center;
    align-content: center;
    height: 5rem;
    line-height: 5rem;
    font-size: 3rem;
    background-color: #081b31;
    color: #ffff7f;
}

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

    
}

img{
    height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: #081b31;

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

.choice:hover{
    cursor: pointer;
    background-color: #081b31;
    
}

.score-board{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    gap: 3rem;
    color: #05564c;
}

#your-score , #comp-score{
    font-size: 4rem;
}

.msg-container{
    margin-top: 2rem;
}
#msg{
    background-color: #dcbda2;
    color: #201142;
    font-size: 2rem;
    height: 4rem;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    display: inline;
    border-radius: 2rem;
    
}
