﻿body {
    background: linear-gradient(-45deg,#e1e1e1,#b6dcd4);
    /* background-color: #13011b; */
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    /* background-image: linear-gradient( 102.1deg, rgba(96,221,142,1) 8.7%, rgba(24,138,141,1) 88.1% );*/
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.top-header{
    background-color: #13011b ;
}