*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font: 16px/24px Arial, serif;
}

.b-quiz-results {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.b-quiz-results__action {
    display: block;
    width: 200px;
    height: 50px;
    margin: 0 auto 40px;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 50px;
    font-family: Arial, sans-serif;
    color: #000;
    background: none;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

.b-quiz-results__action:hover,
.b-quiz-results__action:focus {
    color: #fff;
    background-color: #ca0f0a;
    border-color: #ca0f0a;
}