* {
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

@font-face {
  font-family: Gotham-Black;
  src: url(gotham-black.woff2);
}

body {
  overflow: hidden;
}

h1 {
  font-family:'Gotham-Black';
  font-size: 48px;
  color: white;
}

/* Section Landing Page */
section.landing {
  display: block;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
/* Landing Page Video */
section.landing video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

/* Mobile Landing Page Video */
section.landing-mobile video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0;
}

/* Breakpoints */
@media (min-width: 812px) {

  section.landing-mobile video {
    visibility: hidden;
  }
}

@media (max-width: 812px) {
  section.landing video {
    visibility: hidden;
  }
}
