.typewriter {
    display: flex;
    justify-content: center;
}

.typewriter-inner-welcome_title {
    overflow: hidden;
    white-space: nowrap;
    /* steps (AnzahlZeichenInklusiveLeerzeichen) */
    animation: typing 1s steps(10) forwards;
    /*, blink 2s step-end infinite;
    border-right: 2px solid;*/
    /* ^^ Enable this to add a blinking cursor ^^*/
}

.typewriter-inner-welcome_subtitle {
    overflow: hidden;
    white-space: nowrap;
    /* steps (AnzahlZeichenInklusiveLeerzeichen) */
    animation: typing 2s steps(26) forwards;
    /*, blink 2s step-end infinite;
    border-right: 2px solid;*/
    /* ^^ Enable this to add a blinking cursor ^^*/
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}
