.quiz-container {
    padding: 1em;
    max-width: 100%;
    margin: 1em auto;
}
.quiz-container a {
    text-decoration: none;
    color: #522367;
}
#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;
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 15px;
    row-gap: 15px;
    width: calc(100% - 15px);
}
.answers a {
    display: block;
    padding: 0.5em 1em;
    margin-bottom: 0.5em;
    background: #fff;
    border-radius: 10px;
}
.answers a.correct {
    background: #090;
}
.answers a.incorrect {
    background: #c00;
}
.answers a.correct,
.answers a.incorrect {
    color: #fff;
}
#quiz-controls {
    background: #522367;
    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,
#quiz-retry-btn,
#quiz-respin-btn {
    display: inline-block;
    padding: 0.5em 1em;
    background: #522367;
    color: #fff;
    border-radius: 10px;
}
#quiz-buttons a {
    background: #fff;
    color: #522367;
}
/* Quiz State Overrides */
.quiz-results-state #quiz-controls {
    background: none;
    padding: 0;
}
.quiz-results-state #quiz-buttons a {
    background: #522367;
    color: #fff;
}