@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.language-animate {
    animation: fadeIn 2s infinite alternate;
}
