#text-animation-loader{
    animation: animationZoom 2s infinite alternate;
}

@keyframes animationZoom{
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.2);
    }
}