*{
    padding: 0;
    margin: 0;
    text-align: center;
}

h1{
    width: 100vw;
    background-color: rgb(39, 4, 72);
    color: whitesmoke;
    height: 5rem;
    line-height: 5rem;  /*helps to align the text at center vertically */
}
.choice{
    height: 200px;
    width: 200px;
    object-fit: contain;
    margin: 1em;
    
}
.choices{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 7em;
    flex-wrap: wrap;
}
img{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
}
img:hover{
    border: 4px solid black;
    cursor: pointer;
}
.score-board{
    display: flex;
    justify-content: center;
    justify-content: space-around;
    margin: 50px;
}
#user-score, #comp-score{
    font-size:70px;
}
p{
    font-size: 25px
}
.msg-container{
    background-color: rgb(39, 4, 72);
    color: white;
    display: inline-block;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 
                0 6px 6px rgba(0, 0, 0, 0.23);
}
