:root {
  --bg: #f7f8f5;
  --ink: #17211d;
  --muted: #63716a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

.page {
  display: grid;
  min-height: 100svh;
  place-content: center;
  padding: 24px;
  text-align: center;
}

.site-title {
  margin: 0;
  line-height: 0;
}

.site-logo {
  display: block;
  width: clamp(320px, 72vw, 760px);
  max-width: 100%;
  height: auto;
}
