/* Add the animation to the body for the smooth appearance */
body {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

/* Zoom-in effect for the background */
.overlay {
  animation: zoomIn 4s ease forwards;
}

/* Define a slide-in animation for the logo, footer, and list items */
@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Define a fade-in animation for the entire body */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Define the zoom-in animation for the background */
@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1); /* Slight zoom effect */
  }
}

/* Animate header logo */
header .logo img {
  animation: slideIn 1s ease forwards;
}

/* Animate footer elements */
footer ul {
  animation: slideIn 1s ease forwards;
  animation-delay: 0.3s;
}

footer ul li {
  opacity: 0;
  animation: slideIn 1s ease forwards;
}

footer ul li:nth-child(1) {
  animation-delay: 0.3s;
}
footer ul li:nth-child(2) {
  animation-delay: 0.5s;
}
footer ul li:nth-child(3) {
  animation-delay: 0.7s;
}
