
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -100;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  width: 100%;
}

.title {
  font-size: 7em; /* Increased font size */
  margin-bottom: 1em; /* Increased spacing between title and subtitle */
}

.subtitle {
  font-size: 0.9em; /* Subtitle font size */
  position: absolute;
  width: 100%;
  top: 130%; /* Adjusted position relative to the title */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
  .title {
    font-size: 3em; /* Adjusted size for mobile */
    margin-bottom: 1em; /* Adjusted spacing for mobile */
  }

  .subtitle {
    font-size: 0.8em; /* Slightly larger font size for subtitle on mobile */
    top: 250%; /* Adjusted position on mobile */
  }

  .ip-address-container {
    text-align: start;
    margin-top: 20px;
    font-size: 8px; /* Adjusts the size */
    font-family: 'Arial', sans-serif; /* Changes the font */
    color: rgba(255, 255, 255, 0.5); /* Adjust the color as needed */
    padding: 10px;
    border-radius: 5px;
    position: fixed; /* Or absolute, depending on your layout */
    bottom: 0;
    left: 0;
    width: 100%;
  }

}

.ip-address-container {
  text-align: start;
  margin-top: 20px;
  font-size: 8px; /* Adjusts the size */
  font-family: 'Arial', sans-serif; /* Changes the font */
  color: rgba(255, 255, 255, 0.5); /* Adjust the color as needed */
  padding: 10px;
  border-radius: 5px;
  position: fixed; /* Or absolute, depending on your layout */
  bottom: 0;
  left: 0;
  width: 100%;
}

.button, .button:hover, .button:focus, .button:active {
  text-decoration: none; /* Removes underline from the button link */
  display: inline-block;
  padding: 10px 30px;
  background-color: rgba(255, 255, 255, 0.5);
  color: white;
  text-align: center;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
  border: none;
  backdrop-filter: blur(1px);
}
