/* style.css */

/* ---------------------------- */
/* Global body gradient animation */
/* ---------------------------- */

body{
  background: linear-gradient(120deg, #5f9cff, #6cffb1);
  background-attachment: fixed;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

@keyframes gradientShift {
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

/* Add any other global styles like font, buttons, etc. here */