

/* INTRO SCREEN */

.intro{
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #0c0c0c;
    transition: 1s;
}

.logo-header {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #d2cdc1;
}

.intro-logo {
    position: relative;
    display: inline-block;
    bottom: -25px;
    opacity: 0;
    font-weight: 300;
    font-family: 'Great Vibes', cursive;
}

.intro-logo.active {
    bottom: 0;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.intro-logo.fade {
    bottom: 150px;
    opacity: 0;
    transition: ease-in-out 0.5s;
}


