/**************************************/
.title-neon {
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: neon 0.7s infinite alternate;    
}

@keyframes neon {
    0% {
        text-shadow: 0 0 10px #0069ab, 0 0 20px #0069ab, 0 0 40px #0069ab, 0 0 80px #0069ab, 0 0 160px #0069ab;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}

/**************************************/

.title-jump {
    color: #fff;
    animation: jump 0.6s infinite alternate;
}

@keyframes jump {
    0% {
        margin-top: 4px;
        margin-bottom: 4px;
    }
    100% {
        margin-top: 8px;
        margin-bottom: 0px;
    }
}

/**************************************/

.title-pulse {
    color: #fff;
    animation: pulse 0.3s infinite alternate;
    
}

@keyframes pulse {
    0% {
        font-size: 48px;
    }
    100% {
        font-size: 49px;
    }
}

/**************************************/

.title-blink {
    color: #fff;
    animation: blink 0.5s infinite alternate;
    
}

@keyframes blink {
    0% {
        opacity: 1;
        color: white;
    }
    100% {
        opacity: 0.4;
        color: lightyellow;
    }
}