:root {
  color-scheme: light;
  --bg: #f4f5f3;
  --text: #111513;
  --muted: #69706d;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
}

p {
  margin-top: 24px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}
