/* Dark Theme Styles */
body {
    background-color: #000000ef;
    color: #f2f2f2;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header, footer {
    background-color: #430b0b;
    padding: 20px;
    text-align: center;
  }
  
  main {
    padding: 40px;
  }
  
  .video-section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .video-container {
    flex: 1;
    margin-right: 40px;
  }
  
  .text-container {
    flex: 1;
  }
  
  .video-player {
    width: fit-content; 
    margin: auto; 
    height: 500px;
    width: 370px;
    object-fit: cover;
    
   
  }
  
  .video-player video {
    width: 100%;
    height: auto; /* Let the height adjust automatically to maintain aspect ratio */
    max-width: 70%; /* Ensure the video does not exceed the container width */
  }
  
  
  
  h1, h2 {
    color: #fff;
    font-size: 30px;
    border-radius: 5px;
  }
  
  p {
    line-height: 1.5;
  }