     
.vimeo-wrapper{
  position: relative;
  padding-bottom: 56.25%;
  margin-bottom: 75px;
}

.vimeo-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.landing-container {
    display: flex; /* Apply flexbox to only this section */
    flex-direction: column; /* Align text vertically */
    align-items: center; /* Horizontally center the text */
    justify-content: flex-start; /* Move content toward the top */
    min-height: 1vh; /* Full viewport height */
    text-align: center;
    padding: 20px;
    font-family: 'Anton';
    text-transform: uppercase;
    position: relative;
   z-index: 1;
  }
  
  .line {
    font-size: 8rem;
    font-weight: bold;
    line-height: 1; 
    margin: -0.04em 0; 
    padding: 0;
  }
  
  .dynamic-line {
    font-size: 8rem;
    font-weight: bold;
    font-family: 'Anton';
    line-height: 1; 
    margin: -0.04em 0; 
    padding: 0;
  }
  
  /* Style for "STUDIO" */
  .dynamic-line .studio {
    color: #ecc522; 
  }
  
  /* Style for "COLLAB" */
  .dynamic-line .collab {
    color: #ecc522; 
  }
  
  .dynamic-line.studio-collab {
    font-family: 'impact', sans-serif;
    font-size: 8rem; 
  }
  
  .dynamic-line {
    font-family: 'impact', sans-serif;
  }
  
  .line {
    color: #a8a8a8;
    font-family: 'impact';
  }
  
  .dynamic-line {
    color: #efefef;
  }
  
  /* Responsive Design Alternating Text Section*/
  @media (max-width: 900px) {
    .line, .dynamic-line {
      font-size: 6rem;
      /* line-height: 1; 
      margin: 0.25em 0; */
    }
    .dynamic-line.studio-collab {
      font-size: 6rem; /* Smaller size for "STUDIO COLLAB" */
    }
  }
  
  @media (max-width: 768px) {
    .line, .dynamic-line {
      font-size: 4rem; /* Base size for tablets */
    }
    .dynamic-line.studio-collab {
      font-size: 4rem; /* Smaller size for "STUDIO COLLAB" */
    }
  }
  
  @media (max-width: 480px) {
    .line, .dynamic-line {
      font-size: 3rem; /* Base size for mobile */
    }
    .dynamic-line.studio-collab {
      font-size: 3rem; /* Smaller size for "STUDIO COLLAB" */
    }
  }
  hr.divider {
    border: 0;
    height: 2px;
    background-color: #efefef; 
    /* background-color: #ecc522;  */
    margin-top: 50px; /* Space around the divider */
    margin-bottom: 40px;
    width: 90%; /* Width of the divider */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  }