* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

  --white: #faf8f0;
  --orange: #F9C349;
  --orange-fading: #DB9C54;
  --heading: #1E1810;
  --text: #62615C;
  --footer-bg: #141414;

  -webkit-font-smoothing: antialiased;
}

h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--heading);
}

h3 {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--heading);
}

p,
strong {
  color: var(--text);
  line-height: 1.75;
}

span {
  color: var(--orange);
}

a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 900px) {
  html {
    font-size: 93.75%;
  }
}

@media (max-width: 700px) {
  html {
    font-size: 87.5%;
  }
}