@media(min-width:768px){
	.fx-gradient{
		position:
		fixed;
		z-index:0;
		top:0;
		left:0;
		height: 100vh;
		width: 100vw;
		background: linear-gradient(-45deg, #bf770e, #564206, #000000, #000000);
		background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
		background: linear-gradient(-45deg, #ff1100, #3F51B5, #000000, #ff0000);
		background: linear-gradient(-45deg, #ff1100, #3F51B5, #ff00eb, #ff0000);
        background: linear-gradient(-45deg, #ff00eb, #3F51B5, #3F51B5, #ff0000);
        background: linear-gradient(-45deg, #ff00eb, #3F51B5, #00ffc4, #ff0000);
		background: linear-gradient(-45deg, #050097, #000000, #3F51B5, #682466);
		background-attachment: initial;
		background-size: 400% 400%;
		animation: fx-gradient 300s ease infinite;
        filter: blur(150px);
	}
}
@keyframes fx-gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}