:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #101010;
  color: #f6f2ea;
}

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

main {
  width: min(100%, 380px);
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 10vw, 4.2rem);
  line-height: .95;
  font-weight: 500;
  letter-spacing: 0;
}

p {
  margin: 0 0 28px;
  color: #c8bfb2;
  line-height: 1.55;
}

a,
button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: #ff801f;
  color: #1b1007;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.disabled {
  background: #383430;
  color: #9b9288;
  cursor: not-allowed;
}
