/* background.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    /* overflow: hidden; */
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(-45deg, #ff7e5f, #feb47b, #86a8e7, #7f7fd5);
    background-size: auto;
    background-attachment: fixed;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 50%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 50%; }
    100% { background-position: 0% 50%; }
}