:root {
  --bg: #161410;
  --panel: #211d17;
  --text: #e8dec8;
  --muted: #b6a98f;
  --link: #d8ad5c;
  --border: #4b4031;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

header,
main {
  width: min(42rem, calc(100% - 2rem));
  margin-inline: auto;
}

header {
  padding: 2rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
}

.site-title {
  display: inline-block;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 1rem;
}

.site-title pre {
  margin: 0;
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.38rem, 1.35vw, 0.72rem);
  line-height: 1.05;
  font-weight: bold;
  white-space: pre;
  overflow: visible;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a,
main a {
  color: var(--link);
}

nav a {
  text-decoration: none;
}

nav a:hover,
main a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem 0 4rem;
}

h1,
h2,
h3 {
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: 2.25rem;
  margin-top: 0;
}

p,
ul,
ol {
  max-width: 38rem;
}

li + li {
  margin-top: 0.35rem;
}
