/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Simple retro theme */
:root {
  --bg: #000;
  --fg: #00ff99;
  --link: #00ffff;
  --visited: #ff00ff;
  --accent: #00ff99;
  --maxw: 700px;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: monospace;
  line-height: 1.5;
}

header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px dashed var(--accent);
}

.ascii {
  white-space: pre;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.1;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

section {
  max-width: var(--maxw);
  margin-bottom: 40px;
}

h1, h2 {
  color: var(--accent);
  border-bottom: 1px dashed var(--accent);
}

a {
  color: var(--link);
}
a:visited {
  color: var(--visited);
}

footer {
  border-top: 1px dashed var(--accent);
  padding: 10px;
  text-align: center;
  font-size: 0.9em;
}
