@keyframes pulse-glow {
    0% {
        text-shadow: 0 0 5px #267389, 0 0 5px #267389, 0 0 5px #267389;
    }
    100% {
        text-shadow: 0 0 20px #267389, 0 0 20px #267389, 0 0 20px #267389;
    }
}

.pulse-glow {
    animation: pulse-glow 1.5s infinite alternate;
}