/* Amber phosphor CRT terminal aesthetic */

@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

:root {
  --amber: #d4a017;
  --amber-bright: #e8b820;
  --amber-dim: #a67c00;
  --bg: #000000;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--amber);
  font-family: 'VT323', monospace;
  font-size: 20px;
  line-height: 1.3;
  padding: 2rem;
  max-width: 120ch;
  margin: 0 auto;
  min-height: 100vh;
}


h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

a {
  color: var(--amber);
  text-decoration: none;
}

a:hover {
  color: var(--amber-bright);
}

p {
  margin: 0.5rem 0;
}

pre {
  font-family: 'VT323', monospace;
  font-size: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 1rem 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

li {
  padding: 0.2rem 0;
}
