*{
    margin: 0;
    padding: 0;
    text-align: center;
}
h1{
    background-color: blueviolet;
    color:beige;
    height: 5rem;
    line-height: 5rem;  /
}
.choice{
    height: 200px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.choice:hover{
    background-color: rgb(97, 180, 199);
    cursor: pointer; 
}
img{
    height:150px;
    width: auto;
    object-fit: cover;
}

.choices{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
}

.scores{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    margin-top: 3rem;
    gap: 8rem;
}

#user-score, #computer-score{
    font-size: 4rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    
}
.msg-container{
    margin-top: 3rem;
}
#message {
    background-color:blueviolet;
    color:aliceblue;
    font-size: xx-large;
    display: inline;
    padding: 0.5rem;
    border-radius: 1rem;
    font-family: monospace;
}