/* style.css */
:root {
  --bg: #fdf6e3;    /* Soft Sepia */
  --text: #2c3e50;
  --max-width: 680px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1a1a;
    --text: #e0e0e0;
  }
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.8;      /* Breathable spacing for long reading */
  margin: 0;
  padding: 2rem;
  display: flex;
  justify-content: center;
}

article {
  max-width: var(--max-width);
  width: 100%;
}

h1, h2 { font-family: sans-serif; text-align: center; }

p { margin-bottom: 1.5rem; font-size: 1.2rem; }

nav { 
  margin-top: 50px; 
  padding-top: 20px; 
  border-top: 1px solid #ccc; 
  display: flex; 
  justify-content: space-between; 
}