body {
    color: #5B6057;
    font-weight: 700;
}

.choice-container {
    display:flex;
    margin-bottom: 0.8rem;
    width: 100%;
    border-radius: 10px;
    background: #d4a373;
    font-size: 3rem;
    min-width: 80rem;
}

.choice-container:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 black;
    transform: scale(1.02);
    transition: transform 100ms;
}

.choice-prefix {
    padding: 2rem 2.5rem;
    color: #5B6057;
}

.choice-text {
    padding: 2rem;
    width: 100%;
}

.correct {
    background: linear-gradient(32deg, #4f772d 0%, #132a13 100%);
    color: #fdf0d5;
}

.incorrect {
    background: linear-gradient(32deg, #c9184a 0%, #800f2f 100%);
    color: #fdf0d5;
    
}

/* Heads Up Display */
#hud {
    display: flex;
    justify-content: space-between;
}

.hud-prefix {
    text-align: center;
    font-size: 2rem;
}

.hud-main-text {
    text-align: center;
}

#progressBar {
    width: 20rem;
    height: 3rem;
    border: 0.2rem solid #1b4332;
    margin-top: 2rem;
    border-radius: 50px;
    overflow: hidden;
}

#progressBarFull {
    height: 100%;
    background: #1b4332;
    width: 0%;
}

#timeRemaining {
    color: #393D3F;
}

@media screen and (max-width: 768px) {
    .choice-container {
        min-width: 40rem;
    }
}

