:root {
  color-scheme: light dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  color: #111;
  background: #fff;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px;
}

a {
  color: inherit;
}

.site-footer {
  border-top: 1px solid #ddd;
  padding: 24px 20px;
  text-align: center;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
}

.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page h2 {
  margin-top: 32px;
}





@media (prefers-color-scheme: dark) {
  body {
    color: #f5f5f5;
    background: #111;
  }


  .site-footer {
    border-top-color: #333;
  }
}












