html {
    background: var(--aok-white);
    color: var(--aok-black);
    font-family: var(--aok-font-family);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
}

body {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 90%;
}

.container--challange {
    background: var(--aok-sand);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.container--small {
    max-width: 590px;
}

.relative {
    position: relative;
}

.icon {
    fill: var(--aok-green);
}

.icon--reason {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



@keyframes blurred-background {
    0% {
        filter: blur(10px) hue-rotate(0deg) brightness(1);
        transform: scale(1.3);
    }
    50% {
        filter: blur(60px) hue-rotate(5deg) brightness(0.8);
        transform: scale(1.3);
    }
    100% {
        filter: blur(10px) hue-rotate(0deg) brightness(1);
        transform: scale(1.3);
    }
}