/* Add this CSS inside a media query for mobile devices */
@media (max-width: 768px) {
  .video-container video {
    width: 100%; /* Make the video width 100% of the container */
    height: auto; /* Allow the video's height to adjust proportionally */
    top: 0; /* Remove the vertical centering */
    left: 0; /* Remove the horizontal centering */
    transform: none; /* Remove the translate */
    object-fit: contain; /* Maintain aspect ratio, fitting within container */
  }
}
