body {
    background-color: #eeece7;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-optical-sizing: auto;
    font-size: 18px;
    line-height: 1.76;
    color:rgb(25,25,25);
    padding:0;
}
.hidden {
    display: none;
}
.number {
    width:100%;
}
.number input {
    width:100%;
}
main {
    padding:36px 24px;
    display: flex;
    max-width: 720px;
    margin: 0 auto;
    align-items: start;
    flex-direction: column;
}
h1 {
    font-weight: 700;
    font-size: 64px;
    line-height: 74px;
}
h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 16px;
}
.flex {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}
.column {
    width: 50%;
    padding: 24px;
    font-size: 16px;
    color:#838383
}
.column img {
    width:120px;
    margin:0 auto;
}
.wrapper {
    padding: 24px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(35, 47, 53, 0.09) 0px 2px 8px 0px;
}
.intro {
    color:#585858;
    font-size: 18px;
    line-height: 1.6;
}
.text-center {
    text-align: center;
    width: 100%;;
}
.muted {
    font-size: 14px;
    color:#838383;
}
.button {
    border-radius: 8px;
    font-weight: 700;
    display: block;
    margin:16px auto;
    height: inherit;
    border: 0;
    background-color: #52b5f9;
    color:#fff;
    text-decoration: none;
    padding:16px 32px;
    text-align: center;
}
.button:hover {
    background-color: #6cc0fa;
}
.contained {
    flex-grow: 0;
    flex-shrink: 0;
}
#pdf img {
    margin-right:8px;
}
#results {
    margin-top:24px;
}
#question-description {
    font-weight: 300;
    font-size: 1.2em;
}
#answers-container {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#wizard-container button {
    border:1px solid #52b5f9;
    border-radius: 8px;
    background-color: #52b5f9;
    color:#fff;
    font-size:16px;
    font-weight: 700;
    padding: 12px 18px;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
}
#wizard-container button:hover {
    border:1px solid #2BA4F8;
    background-color: #2BA4F8;
}
#wizard-container .prev-button {
    border:none;
    margin-top:24px;
    background-color: transparent;
    color:#52b5f9
}
#wizard-container .prev-button:hover {
    border:none;
    background-color: transparent;
    color:#2BA4F8
}
#uitslag .prev-button {
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:8px;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 18px;
    border:none;
    background-color: transparent;
    color:#52b5f9
}
#uitslag .prev-button:hover {
    background-color: transparent;
    color:#2BA4F8
}
.next-button {
    margin-top:24px;
    float: right;
}
.three-dimensional {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}
.three-dimensional div {
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
    text-shadow: 1px 1px 1px #919191,
        1px 2px 1px #919191,
        1px 3px 1px #919191,
        1px 4px 1px #919191,
        1px 5px 1px #919191,
        1px 6px 1px #919191,
        1px 7px 1px #919191,
    1px 8px 5px rgba(16,16,16,0.4),
    1px 11px 10px rgba(16,16,16,0.2),
    1px 14px 20px rgba(16,16,16,0.2),
    1px 17px 30px rgba(16,16,16,0.2);
}


/* Mobile devices */

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
        line-height: 50px;
    }
    h2 {
        font-size:32px;
        line-height: 40px;
    }
    .flex {
        flex-direction: column;
        gap: 24px;
    }
    .column {
        width:100%;
        padding:0;
    }
}
