.autoShow {
    animation: text-appear both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
}

@keyframes text-appear {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

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

.fadeUp {
    animation: fadeUp both;
    animation-timeline: view();
}

.timeline-item:nth-child(1) {
    animation-range: entry 20% cover 40%;
}

.timeline-item:nth-child(2) {
    animation-range: entry 40% cover 60%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.5);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


::-webkit-scrollbar {
    display: none;
}