body {
  background: #000;
  padding-top: 10px;
}
p {
  color: lime;
  font-family: "Courier";
  font-size: 20px;
  margin: 10px 0 0 10px;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  opacity: 0;
  animation: type 2s steps(45, end) forwards;
  -webkit-user-select: none;
  user-select: none;
}
p:nth-child(2) {
  animation-delay: 2s;
}
p:nth-child(3) {
  animation-delay: 3s;
}
p:nth-child(4) {
  animation-delay: 3.8s;
}
p:nth-child(5) {
  animation-delay: 4.7s;
}
p:nth-child(6) {
  animation-delay: 5.4s;
}
p:nth-child(7) {
  animation-delay: 6.7s;
}
p:nth-child(8) {
  animation-delay: 7.4s;
}
p:nth-child(9) {
  animation-delay: 8.4s;
}
p:nth-child(10) {
  animation-delay: 9.7s;
}
p:nth-child(11) {
  animation-delay: 10.5s;
}
p:nth-child(12) {
  animation-delay: 12s;
  margin-bottom: 25px;
}
p:nth-child(13) {
  animation-delay: 13s;
}
p:nth-child(13) span:first-child {
  animation-duration: 0.8s;
}
span {
  animation: blink 1.8s infinite 13s;
}
p a {
  color: lime;
  text-decoration: none;
}
@keyframes type {
  0% {
    opacity: 1;
  }
  100% {
    width: 30em;
    opacity: 1;
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
::selection {
  background: black;
}