*{
    padding: 0;
    margin: 0;
    text-align: center;
}
#h1{
    color:white ;
    background-color: #081b31;
    height: 10vh;
    padding-top: 5vh;
}
.choice{
    height: 23vh;
    width: 13vw;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}
img:hover{
    cursor: pointer;
    border: 10px solid #081b31;
}
img{
    height: 90%;
    width: 90%;
    object-fit: cover;
    border-radius: 50%;
}
.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    gap: 5rem;
}
.score-board{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    gap: 5rem;
    margin-top: 3rem;
}
#user-score,#comp-score{
    font-size: 4rem;
}
.msg-container{
    margin-top: 5rem;
    height: 100%;
    width: 100%;
    background-color: #081b31;
}
#msg{
   
    color: #fff;
    font-size: 2rem;
    padding: 1rem;
    border-radius: 1rem;
    height: 100%;
}
@media only screen and (max-width:1222px) {
    .img-res{
        height: 75px;
        width: 75px;
    }
    img:hover{
        border: 5px solid #081b31;
    }
    
}