body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text color */
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  justify-content: space-between; /* Space between content and footer */
  align-items: center;
  height: 100vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background image with overlay */
.background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/image.jpg'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.7; /* Adjust opacity for the overlay effect */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 18, 18, 0.8); /* Dark overlay */
  z-index: 3;
}

.container {
  position: relative;
  background: rgba(30, 30, 30, 0.9); /* Darker container */
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 40px 20px; /* Increased padding for larger content */
  max-width: 450px; /* Increased width for larger container */
  width: 90%;
  z-index: 3; /* Ensure the container is above the overlay */
  margin-top: auto; /* Push the container down to center it */
  margin-bottom: auto; /* Allow space for the footer to stick */
}

/* Header Styling */
.header h1 {
  margin: 0;
  font-size: 2.5em; /* Larger header */
  color: #b22222; /* Maroon color */
}

/* Coming Soon Section Styling */
.coming-soon h2 {
  font-size: 2em; /* Increased font size */
  margin: 15px 0; /* More space between elements */
  color: #b22222; /* Maroon color */
}

.coming-soon p {
  font-size: 0.7em; /* Increased font size */
  margin: 15px 0 25px; /* More space around text */
  color: #ddd; /* Light gray for better readability */
}

/* Social Icons Styling */
.social-icons {
  font-size: 1.5em; /* Larger icons */
  color: #b22222; /* Maroon color */
}

.social-icons a {
  text-decoration: none; /* Remove default link underline */
  color: inherit; /* Inherit the color from parent */
}

.social-icons i {
  margin: 0 12px; /* Increased spacing between icons */
  transition: color 0.3s, transform 0.3s; /* Added transform for smooth scaling */
}

.social-icons i:hover {
  color: #ff6347; /* Lighter red on hover */
  transform: scale(1.3); /* Increased size by 30% on hover */
}

/* Footer Styling */
.footer {
  padding: 15px 0; /* More padding for a bigger footer */
  background-color: rgba(30, 30, 30, 0.9); /* Solid dark background */
  color: #f0f0f0; /* Light text color for contrast */
  text-align: center;
  font-size: 0.8em; /* Bigger font for footer */
  width: 100%;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5); /* More prominent shadow */
  position: relative; /* Changed from sticky to relative */
  z-index: 4; /* Ensures footer stays above the overlay */
}

/* Ensures the footer text is visible */
.footer p {
  margin: 0; /* Remove margin to prevent unnecessary space */
}
.footer a {
  text-decoration: none; /* Remove default link underline */
  color: inherit; /* Inherit the color from parent */
}

.footer a:hover {
  color: #ff6347; /* Lighter red on hover */
}

/* Media Queries for responsive design */
@media (max-width: 600px) {
  .header h1 {
    font-size: 2em;
  }

  .coming-soon h2 {
    font-size: 1.7em;
  }

  .coming-soon p {
    font-size: 0.5em;
  }
}