*{
    margin:0;
    padding:0;
    text-align: center;

}

h1{
    background-color: #081b31 ;
    color:#fff;
    height:5rem;

    display: flex;              
    justify-content: center;    
    align-items: center;        
}

.choice{
    height: 170px;
    width: 170px;
    border-radius: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choice:hover{
    cursor: pointer ;
    background-color: #081b31;
}

img{
    height:160px;
    width : 160px;
    border-radius: 20%;
}

.choices{
    display: flex;
    justify-content: center;
    align-items:center;
    gap:5rem;
    margin-top: 8rem;
}

.score-board{
    display: flex;
    justify-content: center;
    align-content: center;
    font-size: 2 rem;
    margin-top: 5rem;
    gap : 15rem;
}

#user-score , #Computer-score{
    font-size: 4rem;
}

.msg-container{
    margin-top:5rem;
}
#msg{
    background-color: #081b31;
    color :white;
    font-size: 2rem;
    display: inline;
    padding:1rem;
    border-radius:1rem ;
}