.quiz-container {
    padding: 1em;
    max-width: 100%;
    margin: 1em auto;
}
.quiz-container a {
    text-decoration: none;
    color: #333;
}
#quiz-header,
#quiz-start-screen,
#quiz-end-screen,
#quiz-results-screen,
#quiz-counter,
#quiz-gameover-screen {
    text-align: center;
}
.question {
    font-size: 1.25em;
}
.answers {
    list-style: none;
    padding: 0;
}
.answers a {
    display: block;
    border-radius: 10px;
}
.answers a.correct {
    background: #090;
    background-image: url(../img/right.png);
    background-repeat: no-repeat;
    background-size: 46px;
    background-position-x: right;
}
.answers a.incorrect {
    background: #c00;
    background-image: url(../img/wrong.png);
    background-repeat: no-repeat;
    background-size: 46px;
    background-position-x: right;
}
.answers a.correct,
.answers a.incorrect {
    color: #fff;
}
#quiz-controls {
    background: #333;
    color: #fff;
    padding: 0.5em 1em;
    text-align: center;
    border-radius: 10px;
}
#quiz-response {}
#quiz-results {
    font-size: 1.25em;
}
#quiz-buttons a,
.quiz-container .quiz-button {
    display: inline-block;
    padding: 0.5em 1em;
    background: #333;
    color: #fff;
    border-radius: 10px;
}
#quiz-buttons a {
    background: #fff;
    color: #333;
}
/* Quiz State Overrides */
.quiz-results-state #quiz-controls {
    background: none;
    padding: 0;
}
.quiz-results-state #quiz-buttons a {
    background: #333;
    color: #fff;
}


@media (max-width: 620px) {
    .answers a.correct {
        background-size: 34px;
        background-position-y: center;
    }
    .answers a.incorrect {
        background-size: 34px;
        background-position-y: center;
    }
    }