/* Remove default margin and padding */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: black;
}

/* Make the video fill the screen without zooming in */
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensure the entire video fits without zooming in */
}

/* Style the play button */
#playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 30px;
  color: white;
  transition: background-color 0.3s ease;
}

/* Style the play icon (triangle) */
#playButton:before {
  content: "►"; /* Unicode character for play symbol */
  font-size: 40px;
  color: white;
}

/* Hover effect on the play button */
#playButton:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
