html {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    color: #3c4750;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

h3 {
    margin-bottom: 0.3em;
    font: 700 18px / 30px "Open Sans", Arial, sans-serif;
    color: #00a8d9;
    letter-spacing: -0.01em;
}

h2 {
    font: 700 22px / 30px "Open Sans", Arial, sans-serif;
    color: #00a8d9;
}

p {
    font-size: 1.125rem;
    width: clamp(0px, 580px, 580px);
    line-height: 1.7;
    letter-spacing: -0.02em;
    color: #4D5351;
}

button {
    width: 360px;
    padding: 14px 30px;
    margin-bottom: 0.4em;
    border: 0;
    border-radius: 5px;
    font: 700 1.125rem/1.1 "Open Sans", Arial, sans-serif;
    text-align: left;
    letter-spacing: 0.01em;
    color: #fff;
    background: #4e4274;
    cursor: pointer;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

button:hover {
    color: #fff;
    background: #312a4b;
    box-shadow: 0 4px 14px 0 rgba(0,0,0,.1);
}

footer {
    display: flex;
    flex-direction: column;
}

#vragen ul {
    list-style: none;
    padding-left: 0;
}

#antwoorden ul {
    line-height: 1.7;
    color: #3c4750;
    font-size: 15px;
    padding-left: 0;
}

div>button {
    margin-bottom: 1em;
}

#antwoorden li {
    display: flex;
}

#start button {
    width: max-content;
}

footer button {
    color: #4e4274;
    background: #fff;
    border: 2px solid #4e4274;
    border-radius: 5px;
    margin-top: 1em;
}

footer button:hover {
    color: #fff;
    background: #4e4274;
}

.hide {
    display: none;
}

p {
    word-wrap: break-word;
}

@media screen and (max-width: 360px) {
    html, body, button, #start button, footer button {
        width: 100%;
        word-wrap: break-word;
    }
    #start button {
        text-align: center;
    }
    footer a {
        width: calc(100% - 3.4em);
    }

}

@media screen and (max-width: 580px) {
    p {
        max-width: 100%;
    }
}