.animated-background {
	background: linear-gradient(-45deg, #B768A2, #D08EA0, #FFCE94, #E79851, #D47D37);
	background-size: 300% 300%;
	animation: gradient 60s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}