/* Make the video background cover the entire page */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: black; /* Fallback background color */
}

/* Video container */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Make sure the video covers the whole page */
}

/* Centered button */
.center-button {
  position: relative;
  z-index: 10; /* Make sure the button is on top of the video */
  padding: 20px 40px;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
}

.center-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
