@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Основные стили для текста */
.animated-word {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
    white-space: nowrap;
}

/* Анимация появления */
@keyframes fadeInWord {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}