.not-found {
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    &::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: $light;
        z-index: 2;
    }

    &__text {
        max-width: 90rem;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        color: $primary;
        padding: 12rem 0 8.5rem;
        position: relative;
        z-index: 2;
        
        h1 {
            @include adaptiveProperty("font-size", 62, 34);
        }

        h2 {
            @extend .h3;
        }
    }
}
