.container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black; /* Fallback background color */
  z-index: 9999; /* Ensure it stays on top */
}

.videoWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; /* 100% of the viewport width */
  height: 100vh; /* 100% of the viewport height */
}

.videoWrapper iframe {
  width: 100%;
  height: 100%;
}

body {
  margin: 0; /* Remove default body margin */
  overflow: hidden; /* Prevent scrolling */
}
