/* Custom Style Instructions (CSI) */

body {
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 400;
	min-height: 100vh;
	background: url("background_2021.jpg") center center;
	background-size: 500px;
	/* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */ /* default */
	animation: moveBackground 60s linear infinite;
}

@keyframes moveBackground {
	from {
		background-position: 0% -500%;
	}
	to {
		background-position: 0% 0%;
	}
}

h1, h2, h3, h4 {
	text-shadow: none !important;
}