@keyframes fadeInUp {
    
0% {
    opacity: 0;
    transform: translateY(10px);
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}

.logo-text {
    display: inline-block;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.logo-text:nth-child(1) { animation-delay: 0.1s; }
.logo-text:nth-child(2) { animation-delay: 0.2s; }
.logo-text:nth-child(3) { animation-delay: 0.3s; }
.logo-text:nth-child(4) { animation-delay: 0.4s; }
.logo-text:nth-child(5) { animation-delay: 0.5s; }
.logo-text:nth-child(6) { animation-delay: 0.6s; }
.logo-text:nth-child(7) { animation-delay: 0.7s; }