html {
    font-size: 18px;
}

body {
  background: #fff;
  color: #111; 
  font-family: 'Calibri Light','Gill Sans','Open Sans',Geneva,Helvetica,Arial,sans-serif;
}
h1 {
  color: #111;
}
.mrgn {
  margin: 30px 0;
}
.faded {
  color: #333;
  font-size: 1.8em;
}
#quiz-counter {
  color: #009aa8;
}
.quiz-container {
    /* padding: 0.25em;*/ 
    width: 1600px;
    max-width: 80vw;
    margin: 1em auto;
}

.quiz-container a {
    text-decoration: none;
    color: #333;
}

#quiz-header,
#quiz-start-screen,
#quiz-results-screen,
#quiz-counter {
    text-align: center;
}

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

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

.answers a {
    display: block;
    padding: 0.5em 1em;
    margin-bottom: 0.5em;
    background: #eee;
    font-size: 1.35em;
}

.answers a.correct {
    background: #009aa8;
}
.answers a.incorrect {
    background: #e23130;
}

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

#quiz-controls {
    background: #009aa8;
    color: #fff;
    padding: 0.25em 0.5em 0.5em;
    text-align: center;
}

#quiz-response {
    font-size: 1.3em;
}
#quiz-results {
    font-size: 1.55em;
    color: #303030;
    padding: 30px 0 20px;
}

#quiz-results p {
    padding-bottom: 10px;
}

#quiz-buttons a,
.quiz-container .quiz-button {
    display: inline-block;
    padding: 0.7em 1.2em;
    background: #88449a;
    color: #fff;
    font-size: 1.2em;
}
#quiz-buttons a {
    background: #fff;
    color: #333;
}

#quiz-start-btn {
    background: #009aa8;
    color: #fff;
}

/* Quiz State Overrides */

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

@media (min-width: 1600px) {

    .faded {
        font-size: 2.5em;
    }

    .mrgn {
        margin-top: 60px;
    }

    .question {
        font-size: 2rem;
        font-weight: 700;
    }

    .answers a {
        font-size: 1.65em;
        margin-bottom: 0.7em;
        padding: 0.7em 1.2em;
        font-weight: 700;
    }

    #quiz-response {
        font-size: 1.8em;
        font-weight: 700;
    }

    #quiz-results {
        font-size: 1.8em;
    }

    #quiz-counter {
        margin: 60px 0;
        font-size: 30px;
    }
}

@media (min-width: 2500px) {

    .faded {
        font-size: 2.9em;
    }

    .mrgn {
        margin-top: 80px;
    }

    .question {
        font-size: 2.2em;
    }

    .answers a {
        font-size: 1.9em;
        margin-bottom: 0.9em;
        padding: 0.9em 1.4em;
    }

    #quiz-response {
        font-size: 2.1em;
    }

    #quiz-results {
        font-size: 2.1em;
    }

    #quiz-counter {
        margin: 80px 0;
    }
}