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

body {
  margin: 0;
  background: #f5f4f0;
  color: #1d2621;
}

main {
  width: min(720px, calc(100% - 40px));
  margin: 10vh auto;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #dddcd6;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 16px 50px rgba(20, 29, 24, .08);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 6vw, 50px);
  letter-spacing: -.045em;
}

h2 { margin-top: 30px; }
p { line-height: 1.65; }
.eyebrow { color: #66736b; font-size: 13px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }

.button {
  display: inline-block;
  margin-top: 16px;
  border-radius: 999px;
  background: #173d2b;
  color: white;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
}

nav { margin-top: 30px; }
nav a { color: #345947; margin-right: 16px; }
