.resident-evil-pulse {
    color: #ffffff !important;
    animation: simplePulse 2s infinite !important;
    text-shadow: 0 0 15px #37A65A !important;
}

@keyframes simplePulse {
    0%, 100% {
        color: #ffffff !important;
        text-shadow: 0 0 10px #37A65A !important;
    }
    50% {
        color: #37A65A !important;
        text-shadow: 0 0 20px #37A65A !important;
    }
}