html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  background-color: var(--color-dark-green);
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  ;
  color: var(--color-light-grey);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-base);
  font-weight: 700;
}

h1 {
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 20px;
  letter-spacing: -1.28px;
}

h2 {
  font-size: 22px;
  line-height: 180%;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

p:not(:last-child) {
  margin-bottom: 20px;
}

a {
  color: var(--color-light-green);
  text-decoration: none;
}

a:not(.button):hover {
  text-decoration: underline;
}

strong {
  font-weight: 700;
}

@media (width >=768px) {
  h1 {
    font-size: 50px;
    line-height: 120%;
    margin-bottom: 30px;
  }

  h2 {
    font-size: 36px;
    line-height: 125%;
  }
}

@media (width >=1024px) {
  h1 {
    font-size: 64px;
  }
}