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

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Background with full height */
.background {
  display: flex;
  flex-direction: column; /* Ensure content stacks vertically */
  justify-content: space-between; /* Space out header, content, and footer */
  align-items: center;
  min-height: 100vh; /* Ensure the background covers the entire viewport */
  width: 100%;
  background: linear-gradient(120deg, #6a11cb, #2575fc);
  background-size: 400% 400%;
  animation: gradientAnimation 8s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Content */
.content {
  text-align: center;
  color: white;
  margin-top: auto; /* Push content down */
  margin-bottom: auto; /* Center content vertically */
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent footer background */
  color: white;
  font-size: 1rem;
  position: relative; /* Keep it within the layout */
}

footer a {
  color: #a6d4fa;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
}