@font-face  {
  font-family: Nunito;
  src: url("../fonts/nunito-v25-latin-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
}

@font-face  {
  font-family: Kalam;
  src: url("../fonts/kalam-v16-latin-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
}

@font-face  {
  font-family: Lato;
  src: url("../fonts/lato-v23-latin-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
}

@font-face  {
  font-family: "Fredericka the Great";
  src: url("../fonts/fredericka-the-great-v15-latin-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
}

:root  {
  --green: #53af4e;
  --text: #444;
  --footer: #2a2a2a;
  --mobile-header: 57px;
}

*  {
  box-sizing: border-box;
}

[hidden]  {
  display: none !important;
}

html  {
  scroll-padding-top: 75px;
}

body  {
  margin: 0px;
  background: rgb(255, 255, 255);
  color: var(--text);
  font: 400 16px / 1.5625 Nunito, Arial, sans-serif;
}

button, input  {
  font: inherit;
}

button, a  {
  -webkit-tap-highlight-color: transparent;
}

button  {
  cursor: pointer;
}

a  {
  color: var(--green);
  text-decoration: none;
}

a:hover  {
  text-decoration: underline;
}

a:focus-visible, button:focus-visible, input:focus-visible  {
  outline: rgb(28, 119, 48) solid 3px;
  outline-offset: 4px;
}

img  {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

p  {
  margin: 0px;
}

h1, h2  {
  font-family: Lato, Arial, sans-serif;
  font-weight: 700;
}

h1  {
  font-size: 30px;
  line-height: 40px;
  color: var(--green);
  margin: 20px 0px;
}

.sr-only  {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0px;
}

.skip-link  {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100000;
  background: rgb(255, 255, 255);
  padding: 10px 16px;
  transform: translateY(-200%);
}

.skip-link:focus  {
  transform: none;
}

.site-header  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 111px;
  padding: 15px 35px 10px 70px;
  border-bottom: 1px solid rgb(193, 193, 193);
}

.brand-name  {
  font: 400 35px / 1.4 "Fredericka the Great", Georgia, serif;
  letter-spacing: 3px;
  color: var(--green);
  white-space: nowrap;
}

.brand-name:hover  {
  text-decoration: none;
}

.brand-domain  {
  font-size: 20px;
}

.slogan  {
  font-size: 14px;
  line-height: 22px;
  color: var(--green);
  min-height: 33px;
}

.introduction  {
  padding: 50px 100px;
}

.reading-tips  {
  list-style: none;
  padding: 0px;
  margin: 25px 0px;
}

.reading-tips li  {
  padding-left: 25px;
  position: relative;
}

.reading-tips li::before  {
  content: "→";
  position: absolute;
  left: 0px;
}

.site-footer  {
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  grid-template-areas: "development notes recommendations" "legal donation recommendations";
  gap: 18px 100px;
  align-content: start;
  padding: 0px 120px 35px;
  background: var(--footer);
  color: rgb(119, 119, 119);
  font-size: 12px;
  line-height: 18px;
}

.site-footer h2  {
  color: rgb(170, 170, 170);
  font-size: 16px;
  line-height: 22px;
  border-bottom: 1px solid rgb(95, 95, 95);
  margin: 16px 0px 10px;
  padding: 10px 0px;
}

.site-footer a, .site-footer .text-button  {
  color: rgb(119, 119, 119);
}

.site-footer a:hover, .site-footer .text-button:hover  {
  color: rgb(187, 187, 187);
  text-decoration: underline;
}

.site-footer a:focus-visible, .site-footer button:focus-visible  {
  outline-color: rgb(255, 255, 255);
}

.site-footer address  {
  font-style: normal;
}

.footer-development  {
  grid-area: development;
}

.footer-legal  {
  grid-area: legal;
}

.footer-legal p  {
  margin: 0px;
}

.footer-notes  {
  grid-area: notes;
}

.footer-donation  {
  grid-area: donation;
}

.footer-recommendations  {
  grid-area: recommendations;
}

.footer-recommendations ul  {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.footer-recommendations li::before  {
  content: "* ";
  color: inherit;
}

.text-button  {
  border: 0px;
  padding: 0px;
  background: none;
  text-align: left;
  line-height: inherit;
}

@media (max-width: 1199px) and (min-width: 990px)  {
  .site-footer  {
    padding-inline: 70px;
    column-gap: 50px;
  }

}

@media (max-width: 989px)  {
  body  {
    padding-top: var(--mobile-header);
    line-height: 26px;
  }

  h1  {
    font-size: 24px;
    line-height: 35px;
    margin: 20px 0px;
  }

  .site-header  {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: var(--mobile-header);
    min-height: 0px;
    z-index: 100;
    padding: 8px 10px 6px;
    background: var(--green);
    border: 0px;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 7px;
  }

  .brand-name  {
    font: 400 30px / 42px Nunito, Arial, sans-serif;
    color: rgb(255, 255, 255);
    letter-spacing: 0px;
  }

  .brand-domain, .slogan  {
    display: none;
  }

  .introduction  {
    padding: 0px 15px 40px;
  }

  .reading-tips  {
    margin: 26px 0px;
  }

  .site-footer  {
    grid-template-columns: minmax(0px, 1fr);
    grid-template-areas: "notes" "legal" "development" "donation" "recommendations";
    padding: 5px 30px 100px;
    gap: 0px;
    font-size: 13px;
    line-height: 20px;
  }

  .site-footer h2  {
    font-size: 18px;
    line-height: 18px;
    color: rgb(119, 119, 119);
    margin: 18px 0px 8px;
    padding: 8px 0px;
  }

  .site-footer a, .site-footer .text-button  {
    color: rgb(119, 119, 119);
  }

  .footer-legal, .footer-donation  {
    padding-top: 20px;
  }

  .footer-legal  {
    padding-bottom: 20px;
  }

  .footer-donation  {
    padding-bottom: 20px;
  }

}

@media (max-width: 320px)  {
  .brand-name  {
    font-size: 25px;
  }

}

@media (prefers-reduced-motion: reduce)  {
  *, ::before, ::after  {
    animation: auto ease 0s 1 normal none running none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

}

@media print  {
  body  {
    padding: 0px;
  }

  .site-header  {
    position: static;
  }

  .skip-link  {
    display: none !important;
  }

  .introduction  {
    padding: 20px;
  }

  .site-footer  {
    padding: 20px;
    column-gap: 25px;
  }

  a  {
    color: inherit;
  }

}

.legal-content  {
  padding: 50px 100px;
  font-size: 15px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.legal-content h1  {
  margin-bottom: 40px;
}

.legal-content h2  {
  font-size: 20px;
  line-height: 1.45;
  margin: 32px 0px 12px;
  color: rgb(68, 68, 68);
}

.legal-content h3  {
  font: 700 17px / 1.45 Lato, Arial, sans-serif;
  margin: 28px 0px 10px;
  color: rgb(68, 68, 68);
}

.legal-content p  {
  margin: 0px 0px 16px;
}

.legal-navigation  {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
}

.legal-content #privacy-title  {
  font-size: 26px;
  color: rgb(83, 175, 78);
  margin-top: 50px;
}

.legal-back  {
  margin-top: 36px !important;
}

@media (max-width: 989px)  {
  .legal-content  {
    padding: 24px 20px 45px;
  }

  .legal-content h1  {
    margin-bottom: 28px;
  }

}
