body{
  display: flex;
  align-items: center;
  justify-content: center;
}

#text{
  font-family: menlo;
  font-size: 25;
  border-right: .15rem solid black;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 1s forwards, blink .6s step-end infinite alternate ;
  animation-delay: 0s, 0.8s;
}

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

@keyframes blink {
  50%{
    border-color: white;
  }
}




