:root {
  --bg: #0c0c0c;
  --fg: #d4d0c8;
  --muted: #444;
  --border: #1e1e1e;
  --hover: #141414;
  --tag-bg: #161616;
  --tag-fg: #555;
}

html.light {
  --bg: #f7f5f0;
  --fg: #1a1a1a;
  --muted: #999;
  --border: #e0ddd7;
  --hover: #f0ede8;
  --tag-bg: #eceae4;
  --tag-fg: #aaa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--fg);
  font-family: Georgia, 'Times New Roman', serif;
  transition: background 0.4s, color 0.4s;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--fg);
  color: var(--bg);
}
