.typewriter-container {
  display: inline-flex;
  align-items: center;
  min-height: 1.2em;
}
.typed-text {
  white-space: nowrap;
}
.cursor {
  display: inline-block;
  width: 2px;
  margin-left: 2px;
  background-color: currentColor;
  height: 1.2em;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
