@import url('https://fonts.googleapis.com/css?family=Archivo+Black:400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rubik:400,500&display=swap');

:root {
  --font-family: 'Rubik', Arial, sans-serif;
  --heading-font: 'Archivo Black', Arial, sans-serif;
  --mono-font: 'Rubik', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, .p-accent, label, input {
  margin-top: 0;
  margin-bottom: 0;
}

 h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
}

h1 {
  font-size: 200px;
  font-weight: 400;
  line-height: 1;
}
h2 {
  font-size: 180px;
  font-weight: 400;
  line-height: 1;
}
h3 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
}
h4 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}
h5 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}
h6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
a {
  color: var(--grey);
  font-family: var(--mono-font);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--grey-dark);
  text-decoration: underline;
}
p, label, input {
  font-family: var(--mono-font);
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.p-accent {
  font-family: var(--mono-font);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.p-white {
  color: var(--white) !important;
}
.heading-white {
  color: var(--white) !important;
}
.caption {
  font-family: var(--mono-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  h1 {
    font-size: 130px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 48px;
    padding: 0 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  h2 {
    font-size: 46px;
  }
  h3 {
    font-size: 27px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  .footer h4{
    font-size: 20px;
  }
  .footer h6{
    font-size: 12px;
  }
}
