:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #20252b;
  background: #f4f5f6;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

main {
  width: min(100%, 38rem);
  padding: clamp(2rem, 7vw, 4rem);
  text-align: center;
  background: #fff;
  border: 1px solid #dde1e5;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgb(28 35 42 / 8%);
}

.label {
  margin: 0 0 1rem;
  color: #69717a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  line-height: 1.12;
}

.copy {
  margin: 1.25rem auto 2rem;
  color: #5a626b;
  line-height: 1.65;
}

a {
  display: inline-block;
  padding: 0.75rem 1rem;
  color: #fff;
  background: #2f3740;
  border-radius: 0.55rem;
  font-weight: 650;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  background: #171b20;
}

a:focus-visible {
  outline: 3px solid #98a2ad;
  outline-offset: 3px;
}
