@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500&family=Instrument+Sans:wght@400;500&display=swap');

:root {
  --bg: #0a0a0a;
  --fg: #f5f5f5;
  --muted: #a3a3a3;
  --heading-font: 'Archivo', sans-serif;
  --body-font: 'Instrument Sans', sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #fafafa;
    --fg: #0a0a0a;
    --muted: #6b6b6b;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body-font);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wrap {
  text-align: center;
  max-width: 480px;
}

.logo {
  height: 40px;
  width: auto;
  margin-bottom: 48px;
}

h1 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 16px;
}

.body {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
