body,
html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: auto;
  box-sizing: border-box;
  overflow-y: auto; /* Allow scrolling if content overflows */
}

.content h1 {
  text-align: center;
  margin: 0 auto;
}

.content a {
  color: white;
  text-decoration: none;
}

.content ul {
  text-align: left; /* Align other content to the left */
}
