.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px; 
    margin-bottom: 100px;
    /* border: 5px solid black; */
  }
  
  .video-container video {
    margin-top: 100px;
    width: 100%; 
    max-width: 1100px; 
  }
  
  .text-container {
    font-size: 20px;
    font-family: 'ABC-Whyte-Reg';
    width: 60%;
    height: 600px;
    margin-top: 50px;
    transform: translate(35%, 0);
    /* border: 1px solid black; */
    margin-bottom: 100px;
  }
  

  .button-container {
    width: 80%;
    height: 50px;
    text-align: right;
    /* border: 1px solid black; */
    margin-bottom: 100px;
  }
  
  .youtube-button {
    font-size: 20px;
    background-color: black;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: bold;
    border: 5px solid black;
    transition: all 0.3s ease;
    
  }
  
  .youtube-button:hover {
    color: black;
    background-color: white;
   
  }
  
