@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('/assets/fonts/NHaasGroteskDSStd-45Lt.woff2') format('woff2'),
    url('/assets/fonts/NHaasGroteskDSStd-45Lt.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('/assets/fonts/NHaasGroteskDSStd-55Rg.woff2') format('woff2'),
    url('/assets/fonts/NHaasGroteskDSStd-55Rg.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: 'Neue Haas Grotesk', Arial, sans-serif;
}

::-moz-selection {
  background: rgba(255, 255, 255, 0.2);
}

::selection {
  background: rgba(255, 255, 255, 0.2);
}


a,
h1,
p {
  color: var(--colour-white);
  font-weight: normal;
}

h1 {
  font-size: 2rem;
  line-height: 1em;
  margin: 0;
}


a {
  text-decoration: none;
  transition: 0.2s;
}

a span {
  border-bottom: 1px solid;
}

@media (pointer: fine) {

  a:hover {
    transition: 0.2s;
    opacity: 1;
  }
}

@media (min-width: 400px) {

  h1 {
    font-size: 2.5rem;
  }

}


@media (min-width: 600px) {

  a,
  h1 {
    font-weight: 300;
  }

  h1 {
    font-size: 3rem;
  }

}

@media (min-width: 900px) {

  h1 {
    font-size: 4rem;
  }

}


@media (min-width: 1024px) {

  h1 {
    font-size: 5rem;
  }

}


@media (min-width: 1280px) {

  h1 {
    font-size: 6rem;
  }

}

@media (min-width: 1680px) {

  h1 {
    font-size: 7rem;
  }

}



@media (max-width: 899px) and (orientation: landscape) {

  h1 {
    font-size: min(10vh, 3rem);
  }

}