.choice-container {
    display: flex;
    margin-bottom: 0.5rem;
    width: 100%;
    font-size: 1.8rem;
    border: 0.1rem solid rgb(86, 165, 235, 0.25);
    border-radius: 12px;
    background-color: hsl(0, 0%, 20%);
}

.choice-container:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(86, 185, 235, 0.5);
    transform: translateY(-0.1rem);
    transition: transform 150ms;
}

.choice-prefix {
    padding: 2.5rem;
    background-color: #56a5eb;
    color: white;
    border-radius: 12px;
    font-weight: 700;
}

.choice-text {
    padding: 1.5rem;
    width: 100%;
}

.correct {
    border: 5px solid #28a745;
}

.incorrect {
    border: 5px solid #dc3545;
}

#hud {
    display: flex;
    justify-content: space-between;
}

.hud-prefix {
    text-align: center;
    font-size: 1.5rem;
}

.hud-main-text {
    text-align: center;
}

#progressBar {
    width: 20rem;
    height: 4rem;
    border: 0.2rem solid #56a5eb;
    border-radius: 12px;
    margin-top: 1rem;
}

#progressBarFull {
    height: 3.7rem;
    background-color: #56a5eb;
    width: 10%;
    border-radius: 10px;
}

#loader {
    border: 1.5rem solid white;
    border-radius: 50%;
    border-top: 1.4rem solid #56a5eb;
    width: 8rem;
    height: 8rem;
    animation: spin 2.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 650px) {
    #question {
        font-size: 3.2rem;
    }
}