.logo {
  text-align: center;
  font-family: Arial, sans-serif;
  color: white;
}

@keyframes slide-in {
  0% {
      transform: translateX(50px); 
      opacity: 0;
      color: yellow;
      text-shadow: none;
  }
  70% {
      opacity: 1;
      transform: translateX(0); 
      color: green;      
      text-shadow: 0 0 10px green, 0 0 20px blue; 
  }
  100% {
      color: white;
      text-shadow: none; 
  }
}

@keyframes fade-up {
  0% {
      transform: translateY(30px); 
      opacity: 0;
  }
  100% {
      transform: translateY(0); 
      opacity: 1;
  }
}

.flash {
  font-size: 1.5em;
  font-weight: bold;
  display: inline-block;
  animation: slide-in 1.5s ease-out forwards;
}

.letters {
  display: inline-block;
  opacity: 0; 
  animation: fade-up 1.5s ease-out forwards;
  animation-delay: 1s; 
}


.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.4s; }

@media (min-width: 768px) {
  .logo h3 {
      font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .logo h3 {
      font-size: 1.2rem;
  }
}
