html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  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;
}

body {
  background-color: var(--c-grey);
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--c-white);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

h1 {
  font-size: 42px;
  line-height: 42px;
  color: var(--c-green);
  margin-bottom: 30px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

h2 {
  font-size: 30px;
  line-height: 30px;
  color: var(--c-green);
  margin-bottom: 20px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

h3 {
  font-size: 20px;
  line-height: 20px;
  color: var(--c-white);
  margin-bottom: 20px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

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

strong {
  font-family: var(--ff-primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 22px;
  }
  
  h1 {
    font-size: 80px;
    line-height: 80px;
  }

  h2 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 30px;
  }

  h3 {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}