* {
  box-sizing: border-box;
}
body {
  background: #031e11;
  margin: 0 auto;
  color: #fff;
  font-family: Monaco, Consolas, monospace;
  -webkit-font-smoothing: none;
  /* -moz-osx-font-smoothing: grayscale; */
  line-height: 1.4;
}
h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  margin-top: 0;
  color: #1fc;
}
h3 {
  font-size: 24px;
  margin-top: 0;
}
p {
  margin-bottom: 2rem;
}
a,
a:visited {
  border-bottom: 0.2rem solid #1fc;
  color: #1fc;
  text-decoration: none;
}
a:active,
a:focus,
a:hover {
  background: #1fc;
  color: #031e11;
}
ul {
  margin: 0;
  padding: 6px 0 0 0;
}

li {
  list-style-type: none;
}

.output {
  padding: 1rem;
  pointer-events: auto;
  font-size: 22px;
}

/* .scanlines {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0) 50%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.6)
  );
  background-size: 100% 0.3rem;
  position: fixed;
  pointer-events: none;
} */

::selection {
  background: #1fc;
  color: #031e11;
}
