/* ================================================================
== STYLING VOOR DE 404 PAGINA                             ==
================================================================= */

.not-found-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.not-found-section .container {
    padding: var(--spacing-7) 0;
}

.not-found-content__code {
    font-size: 6rem;
    font-weight: var(--font-weight-black);
    line-height: 1;
    margin-bottom: var(--spacing-2);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.not-found-content__title {
    font-size: var(--font-size-h1);
    color: var(--color-text-heading);
    margin-bottom: var(--spacing-3);
}

.not-found-content__message {
    font-size: var(--font-size-body);
    color: var(--color-text-subtle);
    max-width: 55ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-5);
}

@media (min-width: 768px) {
    .not-found-content__code {
        font-size: 10rem;
    }
    .not-found-content__title {
        font-size: var(--font-size-h2);
    }
}
