@charset "utf-8";
/* CSS Document */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 📹 Responsive Video Background */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

video#bgVideo {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}


/* 📱 Mobile Responsive Text */
@media (max-width: 768px) {
  .content h1 {
    font-size: 2em;
  }
  .content p {
    font-size: 1em;
  }
}

