* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #FFA62B;
}
h1 {
    background-color: #081b31;
    color: white;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-family: cursive;
}

.choice {
    height: 215px;
    width: 215px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
img {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 50%;
}
.choices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}
.choice:hover {
    background-color: #081b31;
    cursor: pointer;
}
.score-board {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    gap: 5rem;
    font-family: cursive;
    font-weight: bolder;
    margin-top: 1rem;
}
.msg-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#msg {
    background-color: #081b31;
    color: #fff;
    font-size: 2rem;
    display: inline;
    padding: 1rem;
    border-radius: 1rem;
}