div.introduction {
    height: 100vh;
    width: 100%;
    background: white;
    z-index: 3;
    position: relative;
    animation: introduction 2s var(--animation-easing) 1.2s 1 forwards;
    background: black;
    z-index: 200;
    top: 0;
    position: fixed;
    overflow: hidden;

    .ornament {
        position: absolute;
        left: 50%;
        font-size: 22vw;
        right: 0;
        text-transform: uppercase;


    }
}

@keyframes introduction {
    0% {
        top: 0;
    }

    100% {
        top: -100vh;
        display: none;
    }

}




.fade-in-text {

    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;

}

.fade-in-text {
    line-height: 1;
    padding: 2rem;
    opacity: 1;
    display: inline-block;
    /* animation: fadeIn 0s ease forwards; */
    color: white;
    font-size: 9vw;

    bottom: 1em;
    display: flex;


}



.fade-in-text span {
    font-family: "Helvetius";
}

.fade-in-text span::first-letter {
    font-size: 200%;
    font-family: "Futura Stencil";
    color: white;


}


/* .fade-in-text span:nth-child(1) {

    animation-delay: 0s;
}

.fade-in-text span:nth-child(2) {

    animation-delay: 0.2s;
}

.fade-in-text span:nth-child(3) {

    animation-delay: 0.4s;
}

.fade-in-text span:nth-child(4) {

    animation-delay: 0.6s;
} */

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;

    }
}