.gradient {
	background: linear-gradient(-45deg, #292826, #393f4c, #292826);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	/*height: 100vh;*/
  position: fixed;
  /*height: 100%;*/
  height: 800px;
  width: 100%;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}