/* Gradient animation styles for background */

@keyframes gradient-x {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

body {
  background-size: 600% 600%;
  animation: gradient-x 18s ease infinite;
  min-height: 100vh;
  margin: 0;
}
