@keyframes blink {
  0.01% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.01% {
    opacity: 1;
  }
}
@keyframes scanline {
  0.01% {
    height: 0;
  }
  99.99% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
html {
  font-family: monospace;
  font-size: 14px;
  word-wrap: break-word;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  background-color: #000701;
  background-size: 100px;
  color: rgb(51, 255, 0);
  height: 100%;
  user-select: none
  line-height: 0;
}

body {
  margin: 0;
  padding: 16px;
}

p{
  display: contents;
}
pre {
  font-family: monospace;
  font-size: inherit;
  line-height: normal;
}

a{
  color: rgb(51, 255, 0);
}

.blink {
  opacity: 1;
  animation: blink 1s linear infinite;
}

.scanline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.02);
  animation: scanline 8s linear infinite;
  pointer-events: none;
}