.typewriter-animated {
    display: inline-block;
    border-right: 2px solid currentColor;
    animation: blink 0.7s step-end infinite;
    padding-right: 2px;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: currentColor }
} 