header {
	height: 250px;
	background-image: url(../images/sion_top.webp);
	background-size: auto;
}
main {
	background: url(../images/Prophet_of_the_Lord_bg3.webp);
	background-size: auto;
	background-position: top center;
}
.slides {
	width: 100%;
	position: relative;
	text-align: center;
	height: 225px;
	margin: 0 auto;
	display: table;
}
.slides div {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	box-sizing: border-box;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.2;
	word-spacing: 3px;
	font-size: 24px;
	font-weight: 777;
	color: gold;
	-webkit-text-stroke: 0.3px black;
	text-shadow: 1px 1px 2px black;
	filter: drop-shadow(1px 1px 2px black);
}
.slides div:nth-child(1) { animation: fade 80s infinite 0s; }
.slides div:nth-child(2) { animation: fade 80s infinite 10s; }
.slides div:nth-child(3) { animation: fade 80s infinite 20s; }
.slides div:nth-child(4) { animation: fade 80s infinite 30s; }
.slides div:nth-child(5) { animation: fade 80s infinite 40s; }
.slides div:nth-child(6) { animation: fade 80s infinite 50s; }
.slides div:nth-child(7) { animation: fade 80s infinite 60s; }
.slides div:nth-child(8) { animation: fade 80s infinite 70s; }
@keyframes fade {
	0%, 11.25%, 100% { opacity: 0; }
	12.5%, 22.5% { opacity: 1; }
	23.5%, 100% { opacity: 0; }
}
