@keyframes text_fade_in {
	from {
		opacity: .6;
	}
}

.text_fade_in {
	animation: text_fade_in .5s infinite alternate;
}


.bg_dark_anim {
	background: linear-gradient(45deg, #863737, #767753, #467246, #435774, #7e517c);
	background-size: 100% 100%;
	/* animation: gradient 25s ease  alternate; */
  
}
.bg_light_anim {
	background: linear-gradient(45deg, #fffee6, #ffffff, #f3fff3, #e8efff, #d3abd3);
	background-size: 100% 100%;
	/* animation: gradient 25s ease  alternate; */
  }

@keyframes gradient {
	0% {
		background-position: 0% 0%;
	}

	25% {
		background-position: 0% 100%;
	}

	50% {
		background-position: 100% 0%;
	}

	75% {
		background-position: 100% 100%;
	}

	100% {
		background-position: 0% 0%;
	}
}
