/* Global layout and dark theme (SourceHut-inspired) */
body {
  background-color: #1d1f21;
  color: #c5c8c6;
  font-family: "Liberation Mono", "DejaVu Sans Mono", monospace;
  max-width: 80ch;
  margin: 2rem auto;
  padding: 1rem;
  line-height: 1.5;
}

/* Default links (navigation, footer, general text) */
a {
  color: #4ea1ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Article links (index page) */
.posts a {
  color: #4ea1ff;
}

/* Headings */
h1, h2 {
  color: #ffffff;
}

h2 {
  margin-top: 2rem;
}

/* Footer / secondary text */
small {
  color: #8c8c8c;
}

