* {
  outline: none;
}

html {
  height: 100vh;
  width: 100vw;
}

body {
  min-height: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background-color: #18191A;
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

h1 {
  font-size: 4rem;
}

.typewriter {
  margin: 0;
  letter-spacing: .15rem;
  border-right: .25rem solid #FFFFFF;
  overflow: hidden;
  white-space: nowrap;
  animation:
    typing steps(44) 1s 1 normal both,
    blink-caret 1.5s step-end infinite;
}

@keyframes typing {

  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: #FFFFFF;
  }
}
