:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #555555;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

main {
  text-align: center;
  max-width: 60rem;
  width: 100%;
}

.wordmark {
  margin: 0 0 1.5rem;
  line-height: 0;
}

.wordmark img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
}

.status {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  margin: 0;
}
