* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: none;
}

:root {
  font-size: 24px;
}

@media screen and (max-width: 1000px) {
  :root {
    font-size: 4vw;
  }
}

body {
  background: #111;
}

div.wrap {
  font-size: 1rem;
  margin-top: 10vh;
  margin-left: 10vw;
  line-height: 1.2;
  font-family: 'Courier New', Courier, mono;
  color: #fff;
}

a {
  text-decoration: none;
  color: #fff;
}

.header,
a > div {
  white-space: pre;
  color: #999;
}

.header b {
  color: #ddd;
}

a b {
  display: inline-block;
  color: #fff;
  width: 5rem;
}

a span {
  color: #aaa;
  font-style: normal;
}

.link:hover {
  -webkit-animation: blink 0.75s linear infinite;
  -moz-animation: blink 0.75s linear infinite;
  -ms-animation: blink 0.75s linear infinite;
  -o-animation: blink 0.75s linear infinite;
  animation: blink 0.75s linear infinite;
}

ul {
  list-style: none;
  margin-left: 1.8rem;
}

@-webkit-keyframes blink {
  0% {
    background: #ddd;
    color: #000;
  }
  50% {
    background: #ddd;
    color: #000;
  }
  50.01% {
    background: transparent;
    color: #aaa;
  }
  99.99% {
    background: transparent;
    color: #aaa;
  }
  100% {
    background: #ddd;
    color: #aaa;
  }
}

@-moz-keyframes blink {
  0% {
    background: #ddd;
    color: #000;
  }
  50% {
    background: #ddd;
    color: #000;
  }
  50.01% {
    background: transparent;
    color: #aaa;
  }
  99.99% {
    background: transparent;
    color: #aaa;
  }
  100% {
    background: #ddd;
    color: #aaa;
  }
}

@-ms-keyframes blink {
  0% {
    background: #ddd;
    color: #000;
  }
  50% {
    background: #ddd;
    color: #000;
  }
  50.01% {
    background: transparent;
    color: #aaa;
  }
  99.99% {
    background: transparent;
    color: #aaa;
  }
  100% {
    background: #ddd;
    color: #aaa;
  }
}

@-o-keyframes blink {
  0% {
    background: #ddd;
    color: #000;
  }
  50% {
    background: #ddd;
    color: #000;
  }
  50.01% {
    background: transparent;
    color: #aaa;
  }
  99.99% {
    background: transparent;
    color: #aaa;
  }
  100% {
    background: #ddd;
    color: #aaa;
  }
}

@keyframes blink {
  0% {
    background: #ddd;
    color: #000;
  }
  50% {
    background: #ddd;
    color: #000;
  }
  50.01% {
    background: transparent;
    color: #aaa;
  }
  99.99% {
    background: transparent;
    color: #aaa;
  }
  100% {
    background: #ddd;
    color: #aaa;
  }
}

[touch-action='none'] {
  -ms-touch-action: none;
  touch-action: none;
}
[touch-action='pan-x'] {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
[touch-action='pan-y'] {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
[touch-action='scroll'],
[touch-action='pan-x pan-y'],
[touch-action='pan-y pan-x'] {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

body {
  -moz-user-select: none;
}
