:root {
  --bg: #ffffff;
  --text: #111111;
  --accent: #8a8d91;
}
.dark {
  --bg: #121212;
  --text: #eeeeee;
  --accent: #b5bbbe;
}

/* Reset and font */
body, html, h2, p, section, div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 3.5rem 1rem 1rem;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main content layout */
main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 800px;
  margin: auto;
  padding: 2rem 1rem;
  font-family: 'Share Tech Mono', monospace;
}

/* ===================================================
   Footer
=================================================== */

/* Footer link color override to fix blue color issue */
#siteFooter .footer-links a {
  color: var(--text);
  font-family: 'Share Tech Mono', monospace;
}

#siteFooter .footer-links a:hover {
  color: var(--text);
}

/* Footer copyright text */
#siteFooter .footer-copy {
  color: #888888; /* medium grey */
  transition: color 0.3s ease;
  font-family: 'Share Tech Mono', monospace;
}
