html,
body {
  background: #fff;
  height: 100%;
  width: 100%;
  margin: 0px;
  font-family: "Courier";
}

a {
  color: #133a87;
  text-decoration: none;
}

.wrapper {
  padding: 50px;
  width: 100%;
  max-width: 90vw;
  font-size: 1.5em;
}

.wrapper p {
  margin: 15px;
  white-space: nowrap;
  overflow: hidden;
  animation: type 1s steps(15, end);
}
.wrapper p:nth-child(2) {
  animation: type2 3s steps(29, end);
}
.wrapper p:nth-child(3) {
  animation: type3 5s steps(31, end);
}
.wrapper p:nth-child(4) {
  animation: type4 7s steps(30, end);
}
.wrapper p:nth-child(5) {
  animation: type5 9s steps(34, end);
}

.emoji {
  font-size: 0.7em;
}

.cursor {
  animation: blink 1s infinite;
  color: #133a87;
}

.media-refs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  animation: fadeIn 15s;
  position: absolute;
  bottom: 50px;
}
.media-refs a {
  margin: 20px;
}

@keyframes type {
  from {
    width: 0;
  }
  to {
    width: 14ch;
  }
}

@keyframes type2 {
  0% {
    width: 0;
  }
  33% {
    width: 0;
  }
  100% {
    width: 29ch;
  }
}
@keyframes type3 {
  0% {
    width: 0;
  }
  58% {
    width: 0;
  }
  100% {
    width: 31ch;
  }
}
@keyframes type4 {
  0% {
    width: 0;
  }
  70% {
    width: 0;
  }
  100% {
    width: 30ch;
  }
}
@keyframes type5 {
  0% {
    width: 0;
  }
  78% {
    width: 0;
  }
  100% {
    width: 34ch;
  }
}

@keyframes blink {
  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@page {
  size: letter landscape;
}

::selection {
  background: #133a87;
  color: white;
}
