/* Custom styles */
body {
    font-family: 'Space Grotesk', sans-serif;
    scroll-behavior: smooth;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-letters span {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

/* Delay animations for each letter */
.floating-letters span:nth-child(1) { animation-delay: 0s; }
.floating-letters span:nth-child(2) { animation-delay: 0.2s; }
.floating-letters span:nth-child(3) { animation-delay: 0.4s; }
.floating-letters span:nth-child(4) { animation-delay: 0.6s; }
.floating-letters span:nth-child(5) { animation-delay: 0.8s; }
.floating-letters span:nth-child(6) { animation-delay: 1s; }
.floating-letters span:nth-child(7) { animation-delay: 1.2s; }
.floating-letters span:nth-child(8) { animation-delay: 1.4s; }
.floating-letters span:nth-child(9) { animation-delay: 1.6s; }