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;
}

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

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

}


div.clouds {
    position: fixed;
    top: 1em;
    color: white;
    font-family: "Clouds";
    font-size: 10vh;

}


.fade-in-text {

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

}

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

    bottom: 1em;
    display: flex;


}

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

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

}


/* .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;

    }
}