@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600&display=swap');

:root {
  color: #183128;
  background: #f5f6f0;
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
}

header,
main,
footer {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
}

header {
  padding: 28px 0;
}

header a {
  color: #285f4d;
  font-weight: 800;
  text-decoration: none;
}

main {
  padding: clamp(28px, 7vw, 70px);
  border: 1px solid rgba(33, 62, 52, 0.11);
  border-radius: 28px;
  background: #fffefa;
  box-shadow: 0 20px 60px rgba(34, 60, 51, 0.08);
}

h1,
h2 {
  font-family: 'Fraunces', Georgia, serif;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2.3rem, 7vw, 4rem);
  line-height: 1;
}

h2 {
  margin-top: 32px;
  font-size: 1.25rem;
}

p,
li {
  color: #5f6f67;
  line-height: 1.7;
}

a {
  color: #285f4d;
}

.updated {
  margin-bottom: 36px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  padding: 28px 0 40px;
  color: #66756e;
  font-size: 0.78rem;
}

a:focus-visible {
  outline: 3px solid #e19c46;
  outline-offset: 4px;
}
