body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('background.png'); /* Replace with your background image path */
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: blur(10px); /* Add blur effect to the background */
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title-container {
  margin-bottom: 30px;
}

.page-title {
  font-size: 72px; /* Large font size for the title */
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 4px; /* Increased letter spacing */
}

.title-highlight {
  font-size: 36px; /* Smaller font size for the highlight */
  font-weight: bold;
  display: block;
  margin-top: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.message-box {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
  padding: 30px;
  border-radius: 20px; /* Rounded corners */
  backdrop-filter: blur(10px); /* Add blur effect to the box */
  max-width: 600px; /* Limit width for better readability */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Add a subtle box shadow */
}

.description {
  font-size: 18px; /* Font size for the description */
  margin: 10px 0 20px; /* Margin for spacing */
  line-height: 1.5; /* Line height for better readability */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.highlight {
  font-size: 20px; /* Font size for the highlight */
  font-weight: bold;
  margin: 10px 0 20px; /* Margin for spacing */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-invite {
  font-size: 16px; /* Font size for social invite */
  margin: 10px 0 30px; /* Margin for spacing */
  opacity: 0.9; /* Slightly transparent */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.participate-button {
  background-color: #00aaff; /* Light blue background */
  color: white; /* White text color */
  padding: 15px 30px; /* Padding for the button */
  border-radius: 25px; /* Round corners */
  border: none; /* No border */
  font-size: 18px; /* Font size */
  font-weight: bold; /* Bold text */
  text-decoration: none; /* No underline */
  margin: 20px 0; /* Margin for spacing */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Transition effects */
}

.participate-button:hover {
  background-color: #0088cc; /* Darker blue on hover */
  transform: scale(1.05); /* Slightly enlarge on hover */
}

.footer-gap {
  height: 50px; /* Adjust the gap height as needed */
}

.footer {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.3);
}

.footer-text {
  font-size: 18px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: flow 10s linear infinite;
}

.social-icons a {
  display: inline-block;
  margin: 0 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1); /* Scale effect on hover */
}

.icon {
  width: 36px; /* Adjust the size as needed */
  height: 36px;
}

.footer-info {
  margin-top: 15px; /* Space above footer info */
  font-size: 14px; /* Font size for footer info */
  color: #fff;
}

.footer-info a {
  color: #fff; /* Link color */
  text-decoration: underline; /* Underline links */
}

@keyframes flow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 767px) {
  .page-title {
    font-size: 48px; /* Smaller font size for mobile */
  }

  .title-highlight {
    font-size: 24px; /* Smaller highlight font size */
  }

  .message-box {
    padding: 20px; /* Reduced padding for mobile */
  }

  .description {
    font-size: 16px; /* Smaller description font size */
  }

  .highlight {
    font-size: 18px; /* Smaller highlight font size */
  }

  .social-invite {
    font-size: 14px; /* Smaller social invite font size */
  }

  .footer-text {
    font-size: 16px; /* Smaller footer text font size */
  }

  .footer-info {
    font-size: 12px; /* Smaller footer info font size */
  }
}