@charset "utf-8";
body {
    flex-direction:column;
    min-height: 100vh;
    color: #ffffff;
    text-align: center;
}

body {
    background: linear-gradient(135deg, #000000, #d0d0d0, #c33e3e, #d0d0d0, #8944c1, #d0d0d0);
    background-size: 1200% 1200%;
    animation: Animation 26s ease infinite;
}
@keyframes Animation {
    0%{background-position:0% 75%}
    50%{background-position:100% 26%}
    100%{background-position:0% 75%}
}