header {
	background: radial-gradient(circle, darkred, orange, darkred);
	background-size: 200% 200%;
	animation: gradientMove 15s ease infinite;
}
body {
	background: url(../common/images/sion_bg.webp);
	background-size: contain;
	background-repeat: repeat;
}
@keyframes gradientMove {
	0% { background-position: 50% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 50% 50%; }
}
.footer-verse {
	position: absolute;
	width: 100%;
	bottom: 4px;
	left: 50%;
	font-weight: bold;
	color: white;
	text-shadow: 0 0 1px black;
	-webkit-text-stroke: 0.3px black;
	transform: translateX(-50%);
	text-align: center;
}
