:root {
  --bg: #f6f3ee;
  --fg: #2b2926;
  --muted: #a9a29a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #2b2926;
    --fg: #f6f3ee;
    --muted: #6b655d;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

.mark {
  font-size: clamp(6rem, 22vw, 14rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
}

.imprint-link {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.imprint-link:hover {
  color: var(--fg);
}

.imprint {
  min-height: 100%;
  display: block;
  padding: 4rem 1.5rem;
}

.imprint main {
  max-width: 32rem;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}

.imprint h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.imprint p {
  margin-bottom: 1rem;
}

.imprint a {
  color: var(--fg);
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
}

.back-link:hover {
  color: var(--fg);
}
