@font-face {
  src: url(https://conandrum.neocities.org/fonts/Heatwave%20Regular.otf);
  font-family: "Heatwave";
}

@font-face {
  src: url(https://conandrum.neocities.org/fonts/Gotham%20Book.otf);
  font-family: "Gotham";
}

:root {
  --bg: #F5F1EB;
  --surface: #FAF7F2;
  --primary: #DB6A28;
  --primary-hover: #B84F16;
  --secondary: #17375E;
  --accent: #6B4FA3;
  --highlight: #E8B24E;
  --text: #38352F;
  --text-muted: #6D7075;
  --border: #DDD7D0;
  --success: #4BAA84;
  --error: #C74A3A;
  --white: #FAF9F6;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  background-image: url(https://conandrum.neocities.org/img/starsagain.gif);
  padding: 24px;
}

#container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--secondary);
  border: 3px solid var(--highlight);
  padding: 2rem;
}

#header {
  min-height: 60px;
  margin-bottom: 1.5rem;
  font-family: "Heatwave", sans-serif;
}

#header img {
  max-width: 100%;
  height: auto;
  display: block;
}

#main h1 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: "Heatwave", sans-serif;
  color: var(--highlight);
  line-height: 1.2;
}

/* Main sitemap */
#main ul {
  list-style: square;
  padding-left: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--primary-hover);
}

/* Nested sitemap sections */
#main ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

/* Individual links */
#main li {
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

/* Give nested links a little more breathing room */
#main ul ul li {
  margin-bottom: 0.4rem;
}

#main a {
  color: var(--highlight);
  text-decoration: none;
}

/* Mouse / touch hover */
#main a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

/* Don't force extra animation on users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Give the layout a little more room on small screens */
@media (max-width: 600px) {
  #container {
    padding: 1.25rem;
    border-width: 2px;
  }

  #main ul {
    padding-left: 1.4rem;
  }

  #main li {
    margin-bottom: 0.5rem;
  }
}