/* Theme overrides */

:root {
  --bg: #4a341f;
  --accent-bg: #4a341f;
  --text: #FFE0B8;
  --text-light: #d6b38a;
  --border: #6b4a2b;

  --accent: #FFCC99;
  --accent-hover: #FFE0B8;
}

html:root {
  --bg: #4a341f;
  --accent-bg: #4a341f;
  --text: #FFE0B8;
  --text-light: #d6b38a;
  --border: #6b4a2b;

  --accent: #FFCC99;
  --accent-hover: #FFE0B8;
}

/* Typography & layout tweaks */

header nav a,
header nav a:visited {
  color: var(--accent);
}

body {
  font-family: "Courier New", Courier, monospace;
  background-color: var(--bg);
  color: var(--text);
  text-align: left; 
}

/* Keep headings centered */
header, h1, h2 {
  text-align: center;
}

/* Make text inherit color cleanly */
h1, h2, h3, h4, h5, h6, p, span, div {
  color: inherit;
}

/* Links */
a {
  color: var(--accent);
  text-decoration: underline;
}

/* Content width */
.main-text {
  max-width: 700px;
  margin: 0 auto;
}

