*{
    margin: 0;
    padding: 0;
    text-align: center;
}
body{
    background-color: #081b31e0;
}
h1{
    background-color: #081b31;
    color: #fff;
    height: 5rem;
    line-height: 5rem;
}
.choices{
    display: flex;
    justify-self: center;
    gap: 3.5rem;
    margin-top: 5rem;
}
.choice{
    height: 165px;
    width: 165px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease-out;
    cursor: pointer;
}
.choice:hover{
    /* opacity: 0.5; */
    cursor: pointer;
    background-color: #081b31;
}
img{
    height: 150px;
    width: 150px; 
    object-fit: cover;
    border-radius: 50%;
}
.score-board{
    display: flex;
    justify-content: center;
    gap: 5rem;
    font-size: 2rem;
    color: #fff;
}
.score{
    margin-left: 2rem;
}
#comp-score,#user-score{
    font-size: 4rem;
}
.mas-container{
    margin-top: 5rem;
}
#msg{
    background-color: #081b31;
    font-size: 2rem;
    color: #fff;
    padding: 10px 20px;
    display: inline;
    border-radius: 15px;
}
@media only screen and (max-width: 600px) {
    .choices{
    display: block;
    margin-top: 2rem;
    position: relative;
}
    .choice{
    height: 115px;
    width: 115px;
}
    img{
    height: 100px;
    width: 100px; 
}
#msg{
    
    font-size: 1rem;
}
.mas-container{
    margin-top: 2rem;
}
}