@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./merriweather-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./open_sans-latin.woff2") format("woff2");
}

:root {
  --ff-white: #ffffff;
  --ff-gray-30: #c1bfbd;
  --ff-primary: #2f6d42;
  --background: oklch(1 0 0);
  --foreground: oklch(0.145 0 0);
}

* {
  box-sizing: border-box;
}
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--foreground);
  font-family: "Open Sans", system-ui, sans-serif;
}
.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 63px;
  padding-inline: 16px;
  background: var(--ff-primary);
  color: var(--ff-white);
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-link {
  display: flex;
  flex-shrink: 0;
}
.logo {
  display: block;
  width: 93.642px;
  height: 32px;
}
.logo-divider {
  width: 1px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--ff-gray-30);
}
.tagline {
  font-size: 12px;
  line-height: 18px;
}
main {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  text-align: center;
  font-family: "Merriweather", Georgia, serif;
  font-size: 30px;
  line-height: 36px;
}
h1,
p {
  margin: 0;
  font-size: inherit;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .site-header {
    height: 76px;
    padding-inline: 32px;
  }
}
