.quiz-question {
    font-weight: 600;
    font-size: 4vh;
    min-height: 10vh;
}
.quiz-answers li {
    display: inline-block;
    color: white;
    background-color: #00bdb7;
    width: 46%; 
    min-height: 10%;
    line-height: initial;
    font-size: 4vh;
    font-weight: 500;
    margin: 10px;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    clear: none;
    border-radius: 1vh;
    border: none;
}
input[type="radio"].quiz {
    display: none;
}
input[type="radio"].quiz:checked+label li {
    background-color: darkorange !important;
}
.quiz-image-container {
    display: block;
    height: 45vh;
    width: 70vw;
    margin-left: auto;
    margin-right: auto;
}
.quiz-question-image {
    max-height: 45vh;
    min-height: 45vh;
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.quiz-answers li:hover {
    background-color: darkorange;
}
.quiz-score {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100vw;
    height: 60vh;
    font-weight: 600;
    font-size: 200%;
}
.quiz-submit-answer {
    display: inline-block;
    color: white;
    background-color: #00bdb7;
    width: 48%; 
    min-height: 7vh;
    line-height: 5vh;
    font-size: 4vh;
    font-weight: 500;
    margin-top: 20px;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    clear: none;
    border-radius: 1vh;
    border: none;
}
.quiz-submit-answer:hover {
    background-color: darkorange;
}
