@keyframes blink {
    from, to { color: transparent }
    50% { color: rgba(245, 245, 245) }
}
@keyframes growShrink {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes header_line_text_animation {
    0%{
        letter-spacing: 5px;
    }

    50%{
        letter-spacing: 10px;
    }

    100%{
        letter-spacing: 5px;
    }
}
@media (max-width: 576px) {
    * {
        animation: none !important;
    }
}
