.neon-glow {
  font-size: 80px;
  font-weight: bold;
  color: #00ff00;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.6), 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.4);
  animation: neon-glow-animation 4s linear infinite;
}

@keyframes neon-glow-animation {
  0%, 100% {
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.6), 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.4);
  }
  50% {
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8), 0 0 20px rgba(0, 255, 0, 0.7), 0 0 40px rgba(0, 255, 0, 0.6);
  }
}

