@keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } } .glow-letter { display: inline-block; animation: glowPulse 1.5s ease-in-out; }