:root {
  --bg: #eceeef;
  --fg: #2a2c2e;
  --muted: #a4a9ac;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #2a2c2e;
    --fg: #eceeef;
    --muted: #676b6e;
  }
}

* {
  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 {
  text-align: center;
  line-height: 1.15;
  user-select: none;
}

.mark .kicker {
  display: block;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.mark .name {
  display: block;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.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);
}
