CSS GRADIENT GENERATOR
Select the Speed for the Gradient--> Select the Scroll Angle for the Gradient--> Select the Gradient Angle--> Enter the Colors for the Gradients-->


background: linear-gradient( #ccc,#111);
background-size:
animation: AnimationName 30s  ease infinite;
@keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}