:root {
  --bg: #121212;
  --text: #e0e0e0;
  --accent: #bb86fc;
  --code-bg: #1e1e1e;
  --code-text: #dcdcdc;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Fira Code', monospace;
  margin: 0;
  padding: 0;
}

a {
  color: var(--accent);
}

pre, code {
  background-color: var(--code-bg);
  color: var(--code-text);
  padding: 0.5em;
  border-radius: 5px;
  overflow-x: auto;
}

