:root {
  color-scheme: light dark;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

body {
  display: grid;
  min-height: 100vh;
  margin: 0;
  place-items: center;
  background: #f4f6f8;
  color: #17202a;
}

main {
  box-sizing: border-box;
  width: min(42rem, calc(100% - 2rem));
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid #d5dbe1;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 1rem 3rem rgb(23 32 42 / 10%);
  text-align: center;
}

h1 {
  margin-top: 0;
}

a {
  color: inherit;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #101820;
    color: #edf2f7;
  }

  main {
    border-color: #34495e;
    background: #17202a;
  }
}

.eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

dl {
  margin: 2rem 0;
  text-align: left;
}

dt {
  margin-top: 1rem;
  font-weight: 700;
}

dd {
  margin: 0.4rem 0 0;
}

button {
  padding: 0.8rem 1.3rem;
  border: 2px solid currentcolor;
  border-radius: 0.5rem;
  background: #17202a;
  color: #ffffff;
  font: inherit;
  cursor: pointer;
}

button:focus-visible {
  outline: 3px solid #2878c7;
  outline-offset: 4px;
}

button:disabled {
  cursor: wait;
}
