:root {
  --color-primary: rgb(251, 133, 0);
  --color-primary-50: rgba(251, 133, 0, .5);
  --color-secondary: rgb(2, 48, 71);
  --color-tertiary: #219cba;
  --color-tertiary-halfed: rgba(33, 156, 186, .5)
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

section {
  padding: 6rem 8rem;
}

section > header {
  margin-bottom: 6rem;
}

header > h1:not(:last-child) {
  margin-bottom: 0 !important;
}

.content {
  max-width: 144rem;
  margin: 0 auto;
}

.wrapper {
  width: 100%;
}

@media (max-width: 1200px) {
  html {
    font-size: 56.25%; /* 1rem = 9px */
  }
}

@media (max-width: 992px) {
  html {
    font-size: 50%; /* 1rem = 8px */
  }
}

@media (max-width: 768px) {
  html {
    font-size: 43.75%; /* 1rem = 7px */
  }


}
