* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background-color: #000000;
  width: 100%;
  height: 100%;
}

.video-container {
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  max-height: 100vh;
  display: block;
  object-fit: cover; /* Ensures video covers the container without stretching */
}
