/* https://css-tricks.com/old-timey-terminal-styling */
body {
  background-color: black;
  background-image: radial-gradient(closest-side, rgba(0, 110, 0, 0.4), black 115%);
  background-attachment: fixed;
  height: 100vh;
  max-width: 768px;
  margin: auto;
  overflow-x: hidden;
  padding: 2rem;
  color: white;
  font: 2rem Inconsolata, monospace 20px;
  text-shadow: 0 0 1px #C8C8C8;  /* Just a little bit of "glow" */
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 2.5px);
  pointer-events: none;
}
footer {
  padding-bottom: 0.5em;
}
a {
  color: #6BB6DA;
  text-decoration: none;
}
a:hover {
  background: #282828;
}
::selection {
  background: #0080FF;
  text-shadow: none;
}
/* No background for code blocks */
pre.code {
  background: none;
}
