.typewriting {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.static-part {
    margin: 0;
    margin-right: 1ch;
}

.animate-text {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    position: relative;
}

.animate-text li {
    display: none; /* par défaut caché */
    padding-right: 4px;
}

.animate-text li::after {
    content: '';
    display: inline-block;
    width: 1ch;
    height: 2px;
    background: var(--elementColor);
    margin-left: 0.5ch;
}

.static-part::before {
    content: '';
    display: inline-block;
    width: 1ch;
    height: 1ch;
    border-top: 3px solid var(--elementColor);
    border-right: 3px solid var(--elementColor);
    transform: translate(-1ch) rotate(45deg);
}
