@font-face {
  font-family: Mont;
  src: url("quiz-kolagenowy/assets/mont-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: Mont, Arial, sans-serif;
  color: #111;
  background: #f7f4ee;
}

* { box-sizing: border-box; }

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

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

.brand {
  color: inherit;
  text-decoration: none;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: -.06em;
}

section {
  margin-top: clamp(64px, 14vw, 128px);
}

.eyebrow {
  font-size: .78rem;
  letter-spacing: .14em;
}

h1 {
  max-width: 680px;
  margin: 16px 0;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  line-height: .94;
  letter-spacing: -.07em;
}

section > p:not(.eyebrow) {
  max-width: 540px;
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  margin-top: 22px;
  min-height: 54px;
  align-items: center;
  padding: 0 24px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid #8fb54b; outline-offset: 4px; }
