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

h1 {
    text-align: center;
    background-color: black;
    color: bisque;
    height: 5rem;
    line-height: 5rem;
}
img{
    width: 35vh;
}
img:hover {
    opacity: 0.5;
    cursor: pointer;
}
.choices {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 50vh;
}
.score-board,.score {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.score {
    font-size: 5vh;
}
.msg-box {
    margin-top: 5rem;
}
#msg {
    background-color: black;
    color: white;
    font-size: 2rem;
    border-radius: 1rem;
    padding: 1rem;
    display: inline;
}

