.animation-text {
    font-size: 2.5rem;
    color: #333;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden; /* Cache le texte débordant */
    border-right: 4px solid #6200ea; /* Curseur d'écriture */
    animation: blink-caret 0.75s step-end infinite; /* Animation du curseur */
}

/* Animation du curseur */
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #6200ea; }
}