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

body, html {
  height: 100%;
  overflow: hidden;
}

.background {
  position: relative;
  width: 100%;
  height: 100%;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the whole screen */
  z-index: -1; /* Keeps the video behind the content */
}

.content {
  position: relative;
  z-index: 1; /* Brings the content above the video */
  text-align: center;
  color: white;
  padding: 20px;
}

h1 {
  font-size: 3rem;
}

p {
  font-size: 1.5rem;
}
