body {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f2430;
}

p {
  font-variant-caps: all-small-caps;
  font-family: monospace;
  font-size: xx-large;
  font-weight: 100;
  animation-name: blink;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  margin-bottom: 30dvh;
}

@keyframes blink {
  0% {
    color: #f28779;
  }
  50% {
    color: #1f2430;
  }
  100% {
    color: #f28779;
  }
}
