.gradient-background {
  background: linear-gradient(-45deg, #ffd900, #ff8001, #ffd900, #ff8001);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
  height: auto;
}

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