 

  
  .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;
  }


  
/* 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;
    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;
  }
