
body {
        background: #2E1652;
        background: linear-gradient(170deg,rgba(46, 22, 82, 1) 50%, rgb(94, 38, 149) 100%);
        background-size: 300% 200%;
        animation: gradientBG 20s ease infinite;
        min-height: 100vh;
    }

    @keyframes gradientBG {
        0% {
            background-position: 50% 0%;
        }
        50% {
            background-position: 100% 100%;
        }
        100% {
            background-position: 50% 0%;
        }
    }

