@font-face {
  font-family: Nunito;
  font-weight: 200 1000;
  font-display: swap;
  src: url(fonts/nunito-latin.woff2) format("woff2");
}

@font-face {
  font-family: "Nunito Sans";
  font-weight: 200 1000;
  font-display: swap;
  src: url(fonts/nunito-sans-latin.woff2) format("woff2");
}

:root {
  --paper: ##faeada;
  --ink: #241f1b;
  --faint: #8c7e70;
  --accent: #b9532f;
  --accent-dark: #a5482a;
  --field: #fffbf2;
  --border: #d9c9ac;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 24px 96px;
  background: var(--paper);
  color: var(--ink);
  font: 400 19px/1.7 "Nunito Sans", system-ui, sans-serif;
  display: flex;
  justify-content: center;
}

main {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

p { margin: 0; text-wrap: pretty; }

::selection { background: #fad9a8; }

img { image-rendering: smooth; display: block; }

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 100px;
  text-align: center;
}

.logo { width: 242; height: auto; }

.tagline {
  font: 800 12px/1 Nunito, sans-serif;
  letter-spacing: -0.01em;
  max-width: 24ch;
}


/* Footer */

footer {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--faint);
}

footer a { display: flex; color: inherit; }
footer a:hover { color: var(--accent); }