
.question {
    margin: 5vh 10vw;
}
.prompt {
    line-height: 1.7;
    font-size: 1.7rem;
    margin-bottom: 3vh;
}
.quiz-area button {
    padding: 0.5rem 1.25rem;
    font-size: 3rem;
    border: none;
    background: white;
    border: none;
    color: #d88771;
    cursor: pointer;
    transition: all 0.5s ease;
}
.quiz-area button:hover {
    background: #d88771;
    color: white;
}
.choice {
    margin: 0.5rem;
    padding-left: 12px;
    padding-right: 12px;
    background: white;
    color: black;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.75s ease;
    border-radius: 15px;
}
.chosen {
    background: skyblue;
}
.hide {
    display: none;
}
.show {
    display: block;
}
.fas {
    pointer-events: none;
}
.q1 a {
    text-decoration: none;
    color: inherit;
}
.completed {
    pointer-events: none;
}
.r1,.r2,.r3,.r4 {
    background: rgba(255, 255, 255, 0.904);
    border-radius:25px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 12px 28px 0 rgba(0, 0, 0, 0.19);
    padding: 12px 16px;
}