 
/* Typography
===========================*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400;500;600;700;800&display=swap');

@font-face {
	font-family: 'GI';
	src: url('../fonts/gi-bold-web.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: 'GI';
	src: url('../fonts/gi-regular-web.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

  
*, *:before, *:after {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
}



body {
  font-family: 'Noto Serif', sans-serif;
  background-color: black;
  color: white;
  margin: 0;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: #ff9900;
  -webkit-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}

a:hover,
a:focus {
  color: #dc3522;
  outline: 0;
}

.page-content {
  width: 70vw;
  margin: 0 auto;
  line-height: 1.625;
}

@media screen and (max-width: 575px) {
  .page-content {
    width: 100%;
    }
  }


h2 {
  font-size: 3.4em;
  font-family: 'Merriweather Sans', sans-serif;
  line-height: 1.2;
  text-align: center;
  margin-top: 1rem;
  padding: 5rem 0 5rem;
}

@media screen and (max-width: 575px) {
  h2 {
    font-size: 1.9em;
    padding: 2rem 1rem 2rem;
  }
}

h3 {
  font-size: 1.5em;
  font-family: 'Merriweather Sans', sans-serif;
  line-height: 1.2;
  margin-top: 1rem;
  padding: 2rem 0 2rem;
}

@media screen and (max-width: 575px) {
  h3 {
    font-size: 1.2em;
    padding: 1.5rem 1.8rem 1.2rem;
  }
}


h4 {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  padding: 2rem 2rem 0 3rem;
}
@media screen and (max-width: 575px) {
  h4 {
    font-size: 1em;
    line-height: 2;
    padding: 2rem 2rem 0 3rem;
  }
}

.byline {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 300;
  margin: 1rem 0 1rem;
  padding: 1rem 0 30px;
  font-style: italic;
}

@media screen and (max-width: 575px) {
  .byline {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 1rem 2rem 1rem;
    padding: 1rem 0 0.1rem;
    font-style: italic;
  }
}

p {
  -webkit-font-smoothing: antialiased;
  font-family: 'Noto Serif', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 575px) {
  p {
    margin: 1rem 2rem 1rem;
  }
}

hr {
  border: none;
  height: 1rem;
  margin: 1.4em auto;
  width: 3em;
}



  h1 {
    font-family: serif;
    font-size: 10vmin;
    line-height: 1.1;
    margin-top: 50vh;
    text-align: center;
  }
  
  .text-container {
     margin-top: -50vh;
  }
  

  .text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 60rem;
    position: relative;
    padding: 2rem 2rem 3rem 2rem;
  }
  
  @media screen and (max-width: 575px) {
    .text-section {
      width: 100vw;
      padding: 1rem;
    }
  }

  
  .text-section h1 {
    font-size: 80px;
    margin-top: 30vh;
  }
  
  .text-section p {
    font-size: 1.2rem;
  }

  .text-section img {
    border-radius: 5px;
  }

  .big-container {
    min-height: 600vh;
  }
  
  video {
    position: sticky;
    top: 0;
    width: 100%;
    object-fit: cover;
    height: 100vh;
  }

  img {
    position: sticky;
    top: 0;
    width: 100%;
    object-fit: cover;
    height: 100vh;
  }

  
/* Code for fixed media with scrolling text over */
.Block {
    line-height: 1.5;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  .Block-media {
    height: 100%;
    left: 0;
    max-height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .Block-media.is-fixed {
    clip: rect(0, auto, auto, 0);
    max-height: none;
  }
  .Block-media > * {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  .Block-content {
    display: flex;
    flex-direction: column;
    /* Set where the text should be placed in its container */
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    /* Set max width for text over media */
    max-width: 60rem;
    /* Adjust to set the distance between text slides */
    min-height: 80vh;
    position: relative;
    text-align: center;
    width: calc(100% - 1.875rem);
    z-index: 1;
  }
  

  .Media video,
  .Media img {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    vertical-align: top;
    width: 100%;
  }
  
  .article {
    padding: 2rem;
  }

  .article p {
    padding: 2rem;
  }
