.typewriter {
  overflow: hidden;
  border-right: .15em solid #47b2e4;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
}

.typewriter.typing {
  border-right: .15em solid #47b2e4;
  animation: blink-caret .75s step-end infinite;
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #47b2e4; }
}

.typewriter-container {
  min-height: 3em; /* Adjust based on your font size */
}