a {
  color: inherit;
}

body {
  background: black;
  color: white;
  font-family: 'Roboto Mono', monospace;
}

#animation-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  overflow: hidden;

  z-index: 1;
}

#animation {
  width: 417.8700361011%;
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
}

.animation--flicker {
  animation: flicker 0.15s infinite;
}

footer {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;

  box-sizing: border-box;
  max-width: 450px;
  max-height: 300px;
  overflow: auto;
  font-size: 1.25rem;
  line-height: 1.5em;
  background: rgba(0, 0, 0, 0.75);
  padding: 1rem;
}

footer p {
  margin: 0 0 1.5em;
}

footer p:last-child {
  margin-bottom: 0;
}

@keyframes flicker {
  0% {
    filter: invert(50%);
  }

  50% {
    filter: invert(100%);
  }

  100% {
    filter: invert(50%);
  }
}
