.test {
    text-align: center;
    padding: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #545454;
    font-size: 48px;
}

.nummer {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #545454;
    font-size: 24px;
    border-bottom: 1px solid #545454;
    margin-bottom: 40px;
    padding-bottom: 10px;
}

.titel {
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #545454;
    font-size: 72px;
}

.antwoorden {
    display: flex;
    align-items: stretch;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #545454;
    font-size: 48px;
}

.antwoord {
    background-color: #545454;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 48px;
    border-radius: 5px;
    margin: 5px;
    min-height: 80px;
    line-height: 80px;
    flex: 1;
    cursor: pointer;
}

.volgende {
    width: 100%;
    font-size: 48px;
    border-radius: 5px;
    background-color: #7ec77e;
    color: #ffffff;
    margin-right: 10px;
    text-align: center;
    height: 80px;
    line-height: 80px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 48px;
}

.uitleg {
    font-size: 24px;
    margin: 0;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #545454;
}

.uitslag h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #545454;
    font-size: 48px;
}
.uitslag h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #545454;
    font-size: 40px;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.correct {
    background-color: #7ec77e;
}

.wrong {
    -webkit-animation-name: wrongAnswer;
    animation-name: wrongAnswer;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@keyframes wrongAnswer {
    0%, 100% {
        background-color: #545454;
        color: white;
    }
    50% {
        background-color: #c73700;
        color: white;
    }
}
