
body {
  width: 100%;
  height: 100vh;
  display: flex;
  place-items: center;
}

h1 {
  font-size: 30px;
}

.typewriter {
  width: 28ch;
  animation: typing 6s steps(28) forwards, blink 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 2em;
}

@keyframes typing {
  0%, 100% {
    width: 0;
  }
  50% {
    width: 28ch;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}/*# sourceMappingURL=style.css.map */