html,
body {
    box-sizing: border-box;
    height: 100%;
    padding: 0;
    margin: 0;
}
body {
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 1.4;
    color: #444;
}
h1,h2 {
    font-weight: 700;
    font-style: normal;
    margin: 10px 0;
    color: #0C2D83;
}
h1 {
    font-size: 2rem;
}
h2 {
    font-size: 2rem;
}
p {
    margin: 10px 0;
}
.lead {
    font-size: 1.75rem;
    color: #0C2D83;
}
.question {
    font-size: 1.75rem;
    display: flex;
    justify-content: center;
    border-top: 2px solid #eee;
    padding: 20px 0;
}
.question div {
    margin-left: 40px;
}
.container,
.spinner-container,
.intro-container,
.end-container {
    display: flex;
    transition: opacity .3s ease-in-out;
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
}

.col-2 {
    justify-content: center;
    display: flex;
    flex-grow: 1;
}
.col-2 .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
button {
    background-color: #96005A;
    color: white;
    padding: 20px 30px;
    font-size: 2rem;
    font-weight: 700;
    border: none;
    border-radius: 0;
    transition: background-color .3s ease-in-out;
}
button:hover {
    background-color: #690046;
}
button:disabled,
button[disabled] {
    background-color: #bd96b0;
    cursor: wait;
}
.spinner-container {
    z-index: 99;
}
.spinner {
    text-align: center;
}
.q-container {
    display: none;

}
.wrapper {
    box-sizing: border-box;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.page-body {
    flex-grow: 1;
    padding: 20px;
    position: relative;
    min-height: 550px;
}
/* .page-body.end .container, .page-body.end .end-container {
    position: relative;
}
.page-body.end .container .col-1 img {
    display: none;
}
.page-body.end .intro-container {
    display: none;
} */
header, footer {
    flex-grow: 0;
    flex-shrink: 0;
    padding: 20px;
}
header {
    text-align: right;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}
header img {
    max-width: 300px;
    height: auto;
}
footer {
    background-color: #0C2D83;
    text-align: right;
}
footer img {
    max-width: 200px;
    height: auto;
}