/* GLOBAL STYLES */
body {
  background: #fff;
  padding-top: 5em;
  display: flex;
  justify-content: center;
}


.typewriter h1 {
  color: #000;
  font-family: monospace;
  overflow: hidden; 
  border-right: .15em solid dimgray; 
  white-space: nowrap; 
  margin: 0 auto; 
  letter-spacing: .25em; 
  animation: 
    typing 3.5s steps(30, end),
    blink-caret .5s step-end infinite;
}


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


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