/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Make the page fill the viewport */
  html, body {
    width: 100%;
    height: 100%;
    background: #000;
  }
  
  /* Container for the video */
  .video-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  /* Fullscreen video */
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  