:root {
  color-scheme: light dark;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: #f7f7f5;
  color: #111;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top)) 24px max(24px, env(safe-area-inset-bottom));
}

main {
  width: min(100%, 420px);
  text-align: center;
}

.brand {
  margin-bottom: 44px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

p {
  min-height: 24px;
  margin: 12px 0 28px;
  color: #666;
  font-size: 15px;
}

#turnstile-container {
  min-height: 70px;
}

button {
  margin-top: 24px;
  border: 0;
  border-radius: 14px;
  padding: 13px 20px;
  background: #111;
  color: #fff;
  font: inherit;
  font-weight: 650;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #090909;
    color: #f4f4f2;
  }

  p {
    color: #a7a7a2;
  }

  button {
    background: #f4f4f2;
    color: #111;
  }
}
