.typewriter-cycle {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 3px solid #7f7ff9; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  animation: blink-caret 0.75s step-end infinite;
  padding-right: 3px;
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #7f7ff9;
  }
}/*# sourceMappingURL=typewriter-cycle.css.map */