body {
        /*background-image: linear-gradient( 135deg, #919191 10%, #5E6774 100%);*/

        background: #919191;
        background: linear-gradient(135deg, rgb(145, 145, 145) 0%, rgb(98, 125, 146) 50%, rgb(94, 103, 116) 100%);
}


/*body {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        rgb(145, 145, 145) 0%,
        rgb(98, 125, 146) 50%,
        rgb(94, 103, 116) 100%
    );
    background-size: 300% 300%;
    animation: gradientMove 20s ease infinite;
}

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

@media (prefers-reduced-motion: reduce) {
    body {
        animation: none;
    }
}*/
