/* theme.css */

body {
  margin: 0;
  font-family: "DM Sans", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Animated Background */
  background: linear-gradient(-45deg, #e0f2fe, #f5f5ff, #eef2ff, #f0fdf4);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  
  color: #0f172a;
  min-height: 100vh;
}

/* Animation Keyframes */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}