*{
    margin:0;
    padding: 0;
    text-align: center;
}

h1{
    background-color: #081b31;
    color: white;
    height: 5rem;
    line-height: 5rem;
}

.Choice{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Choice:hover{
    cursor: pointer;
    background-color: #081b31;
}

img{
    object-fit: cover;
    height: 200px;
    width: 200px;
}

.Choices{
    display: flex;
    justify-content: center;
    align-items: center;    
    margin-top: 5rem;
    gap: 5rem;
}

.Score-Board{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin-top: 3rem;
    gap: 5rem;
}

.msg-container{
     margin-top: 5rem;
}

#msg{
    background-color: #081b31;
    color: white;
    font-size: 2rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}