/* At top */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: monospace, sans-serif;
  background-color: #000;
  color: #0f0;
}

a {
  color: #0ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1 {
  font-size: 2em;
  margin-bottom: 0.25em;
}
h2 {
  margin-top: 2em;
}
.terminal {
  background: #111;
  padding: 1em;
  border: 1px solid #0f0;
  border-radius: 5px;
  margin-top: 2em;
}
.enigmatic {
  margin-top: 2em;
  font-style: italic;
  color: #9ca3af;
}
.soon {
  font-style: italic;
  color: #999;
}
