body {
    background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf);
    background-size: 200% 200%;
    animation: bgMove 10s ease infinite;
    min-height: 100vh;
    color: white;
}

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

