.lost-container {
    height: calc(100vh - 50px);
    width: 100%;
    position: relative;
    background-color: black;
    overflow: hidden;
}

.fade {
    position: relative;
    width: 100%;
    min-height: 60vh;
    top: -25px;
    background-image: linear-gradient(0deg, transparent, black 75%);
    z-index: 1;

}

.star-wars {
    display: flex;
    justify-content: center;
    position: relative;
    height: 800px;
    color: #feda4a;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 500%;
    font-weight: 600;
    letter-spacing: 6px;
    line-height: 150%;
    perspective: 400px;
    text-align: justify;
    transition: all 1s ease;
}

.star-wars.end {
    opacity: 0;
    pointer-events: none;
}

.fade.end {
    opacity: 0;
    pointer-events: none;
}

.crawl {
    position: relative;
    top: 99999px;
    transform-origin: 50% 100%;
    animation: crawl 60s linear;
}

.crawl>.title {
    font-size: 90%;
    text-align: center;
}

.crawl>.title h1 {
    margin: 0 0 100px;
    text-transform: uppercase;
}

@keyframes crawl {
    0% {
        top: -100px;
        transform: rotateX(20deg) translateZ(0);
    }

    100% {
        top: -6000px;
        transform: rotateX(25deg) translateZ(-2500px);
    }
}

.particles-js-canvas-el {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 500;
    top: 0px;
    left: 0px;
}

.skip-anim {
    color: #feda4a;
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 500000;
}

@media screen and (max-width:800px) {
    .skip-anim {
        bottom: auto;
        top: 70px;
        position: fixed;
    }

    .star-wars {
        text-align: center;
    }

    .crawl {
        animation: crawl 30s linear;

    }
}

.redirect-container {
    position: absolute;
    width: 100%;
    top: 350px;
    transform: translateY(-50%);
    left: 0px;
    z-index: 50000;
    transition: all 1s ease;
    opacity: 0;
    pointer-events: none;
}

.search-container-overlay .input-search-container .content input {
    color: white;
}

.search-container-overlay .input-search-container .content input::placeholder {
    color: rgb(190, 190, 190);
}

.redirect-container.active {
    opacity: 1;
    pointer-events: all;
}

.lost-container .links {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lost-container .links li {
    text-align: center;
}

.lost-container .links li:last-child:after {
    content: none;
}

@media screen and (max-width:800px) {
    .lost-container .links li:after {
        content: none;
    }

    .lost-container .links li {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }
}