.scroll-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.scroll-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}