* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #f5f5ef;
  color: #1a2721;
  font-family: system-ui, sans-serif;
  line-height: 1.7;
}
header,
main,
footer {
  max-width: 800px;
  margin: auto;
  padding: 28px;
}
header {
  border-bottom: 1px solid #dddfd4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a {
  color: #183f30;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 3px solid #087a51;
  outline-offset: 5px;
}
.wordmark {
  font-size: 32px;
  letter-spacing: -2px;
  font-weight: 650;
  text-decoration: none;
}
main {
  padding-top: 60px;
  padding-bottom: 60px;
}
h1 {
  font-size: clamp(36px, 7vw, 58px);
  letter-spacing: -2px;
  line-height: 1.1;
  font-weight: 500;
}
h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 36px;
}
p {
  color: #535e53;
}
small {
  color: #697067;
}
footer {
  border-top: 1px solid #dddfd4;
  display: flex;
  gap: 24px;
  font-size: 14px;
  flex-wrap: wrap;
}
