:root {
  --site-max-width: 1200px;
  --site-bg: #ffffff;
  --site-text: #111111;
  --site-muted: #6b7280;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--site-bg);
  color: var(--site-text);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--site-max-width));
  margin-inline: auto;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 3rem;
  padding: 1.5rem 0;
  color: var(--site-muted);
}
