body {
    color: #fff;
}

.choice-container {
    display: flex;
    margin-bottom: 0.8rem;
    width: 100%;
    border-radius: 4px;
    background: rgb(9, 51, 141);
    font-size: 3rem;
    min-width: 80rem;
}

.choice-container:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(6, 103, 247, 0.5);
    transform: scale(1.02);
    transform: transform 100ms;
}

.choice-prefix {
    padding: 2rem 2.5rem;
    color: white;
}

.choice-text {
    padding: 2rem;
    width: 100%;
}

.correct {
    background: linear-gradient(32deg, rgb(9, 119, 22) 0%, rgb(24, 136, 65) 100%);
}

.incorrect {
    background: linear-gradient(32deg, rgb(173, 22, 22) 0%, rgb(168, 9, 9) 100%);
}

/* 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 rgb(11, 138, 26);
    margin-top: 2rem;
    border-radius: 50px;
    overflow: hidden;
}

#progressBarFull {
    height: 100%;
    background: rgb(11, 138, 26);
    width: 10%;
}

@media  screen and (max-width: 600px) {
    #game {
        min-width: 40rem;
        margin-top: 290px;
    }
    .choice-container {
        min-width: 40rem;
    }
    .hud-item {
        margin-right: 3rem;
        margin-left: 2rem;
    }
}