/* Glowing animation */
@keyframes glow {
  0%,
  100% {
    opacity: 0.7;
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    filter: blur(12px);
  }
}

.glow-animation {
  animation: glow 2.5s infinite;
}

.animation-delay-0 {
  animation-delay: 0s;
}
.animation-delay-200 {
  animation-delay: 0.2s;
}
.animation-delay-400 {
  animation-delay: 0.4s;
}
.animation-delay-600 {
  animation-delay: 0.6s;
}
.animation-delay-800 {
  animation-delay: 0.8s;
}
