body {
  background: #121212;
  margin: 0;
  overflow: hidden;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes hodl {
    from {opacity: 1;}
    to {opacity: 1;}
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}

p {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  opacity: 0;
  font-family: "Courier New", Courier, monospace;
  animation: fadeIn 2s ease-out, hodl 2s 2s, fadeOut 2s 4s;
}