.quiz-container {
    padding: 2em;
    max-width: 100%;
    margin: 1em auto;
    border: 1px dashed;
}
#quiz-home-btn {
    display: none;
}
.quiz-container a {
    text-decoration: none;
    color: #333;
}

#quiz-header {
    border-bottom: 2px solid #888;
    margin-bottom: 20px;
}
#quiz-header,
#quiz-start-screen,
#quiz-results-screen,
#quiz-counter {
    text-align: center;
}

.question {
    font-weight: 700;
    font-size: 1.5em;
}

.answers {
    list-style: none;
    padding: 0;
}

.answers a {
    display: block;
    padding: 0.8em 1em;
    margin-bottom: 0.5em;
    background: #fff;
    /*border-radius: 10px;*/
}

.answers a.selected {
    background: #141333;
    color: #fff;
}

/*.answers a.correct {
    background: #141333;
}
.answers a.incorrect {
    background: #141333;
}*/

.answers a.correct,
.answers a.incorrect {
    color: #fff;
}

#quiz-controls {
    background: #141333;
    color: #fff;
    padding: 0.5em 1em;
    text-align: center;
    border-radius: 10px;
}

#quiz-response {
    margin: 0px;
}
#quiz-results {
    font-size: 1.25em;
}
.answers {
    list-style: auto;
}

#quiz-buttons a,
.quiz-container .quiz-button {
    display: inline-block;
    padding: 0.5em 0.5em;
    /*background: #333;*/
    color: #fff;

    border-radius: 10px;
}
#quiz-buttons a {
    background: #fff;
    color: #333;
    width: 100%;
}

/* Quiz State Overrides */

.quiz-results-state #quiz-controls {
    background: none;
    padding: 0;
}
.quiz-results-state #quiz-buttons a {
    background: #333;
    color: #fff;
}