.simple-typewriter {
  display: inline-block;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  padding-right: 0.35em; /* espacio para cursor */
}

.simple-typewriter::after {
  content: attr(data-cursor);
  position: absolute;
  right: 0;
  animation: st-blink 1s step-end infinite;
}

@keyframes st-blink {
  50% { opacity: 0; }
}

/* Ejemplo de una clase opcional para hacerlo grande */
.tw-big {
  font-size: 32px;
}