html, body {
    height: 100%;
    margin: 0 auto;
    max-width: 900px;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

/* QuizComponent **************************************************************/

.quiz-component {
    height: 100svh;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

.quiz-component > * {
    flex 1 100%;
}

.student {
    display: inline-block;
    padding-right: 1em;

    -webkit-user-select: none;
    user-select: none;
}

.student.selected {
    background-color: #ddd;
}

.card-content {
    background: #eee;
    height: auto;
    width: auto;
}

.response-bar {
    margin-top: auto;
}
