.typewriter {
  font-family: monospace;
  white-space: nowrap;
  border-right: 2px solid;
  overflow: hidden;
  width: 0;
  animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: black;
  }
}

.text-container {
  display: inline-block;
  width: 100%;
}
