/* General resets for smoother look */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Centered container for video */
.video-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  transition: opacity 0.3s ease-in-out;
  object-fit: cover; /* Ensure the video covers the entire container */
}

/* Optional: a fade-in effect */
body {
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

/* Fade-in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

