.choice-container {
    display: flex;
    margin-bottom: 0.5rem;
    width: 100%;
    font-size: 1.8rem;
    border: 0.1rem solid rgb(86, 165, 235, 0.25);
    background-color: white;
}

.choice-container:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgb(164, 0, 160);
    transform: translateY(-0.1rem);
    transition: transform 150ms;
}

.choice-prefix {
    padding: 1.5rem 2.5rem;
    background-color: #a400a0;
    color: white;
}

.choice-text {
    padding: 1.5rem;
    width: 100%;
}
.footer {
    visibility: hidden;
}
.correct {
    background-color: #28a745;
}

.incorrect {
    background-color: #dc3545;
}

/* HUD */

#hud {
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.hud-prefix {
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 2px 0 0 rgb(193, 0, 44), -2px 0 0 rgb(193, 0, 44), 0 2px 0 rgb(193, 0, 44), 0 -2px 0 rgb(193, 0, 44), 1px 1px rgb(193, 0, 44), -1px -1px 0 rgb(193, 0, 44), 1px -1px 0 rgb(193, 0, 44), -1px 1px 0 rgb(193, 0, 44);
}

.hud-main-text {
    text-align: center;
    margin-top: 1.5rem;
}

#progressBar {
    width: 20rem;
    height: 4rem;
    border: 0.3rem solid #001655;
    margin-top: 1.5rem;
}

#progressBarFull {
    height: 3.4rem;
    background-color: #446d44;
    width: 0%;
}