header {
	width: 100%;
	min-height: 275px;
	height: 275px;
	background-image: url(../images/church_doors.webp);
	background-size: cover;
	background-position: bottom center;
}
main {
	background: url(../images/Prophet_of_the_Lord_bg3.webp) repeat center center; 
	background-size: auto;
	background-position: top center;
}
@keyframes glow {
	0% { text-shadow: 0px 0px 5px yellow; }
	50% { text-shadow: 0px 0px 15px gold; }
	100% { text-shadow: 0px 0px 5px yellow; }
}



@keyframes gradientShift {
	0% {
		background-position: left top;
	}
	50% {
		background-position: right center;
	}
	100% {
		background-position: left bottom;
	}
}

.gradient-text {
	background: linear-gradient( yellow, orange, red, darkred);
	background-size: 200% 200%; /* Helps with transition */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 4s infinite alternate ease-in-out;
}
.gold-text, .sun-text {
		animation: gradientShift 120s infinite alternate ease-in-out;
}