@font-face {
	font-family: GeosansLight;
	src: url('https://cdn.iandara.com/ttf/geosans-normal') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: GeosansLight;
	src: url('https://cdn.iandara.com/ttf/geosans-oblique') format('truetype');
	font-weight: normal;
	font-style: italic;
}
body {
	position: relative;
	z-index: 0;
	/* Center content using Flexbox */
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden; /* Prevents scrollbars */
	margin: 0;
	height: 100vh;
	font-family: GeosansLight, sans-serif;
	text-align: center;
	color: white;
	background-color: rgb(0 0 0 / 100%); /* Keep the dark overlay on top */
}
body::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-image: url('https://cdn.iandara.com/png/logo');
	animation: background-glow 10s ease-in-out infinite;
	content: '';
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
@keyframes background-glow {
	0%,
	100% {
		filter: brightness(0.7);
	}
	50% {
		filter: brightness(1.2);
	}
}
.content {
	padding: 2rem;
	max-width: 800px;
	animation: text-fade 10s ease-in-out infinite;
}
h1 {
	margin-bottom: 1rem;
	font-size: 3rem;
	font-weight: 700;
	text-shadow: 2px 2px 8px rgb(0 0 0 / 70%);
}
p {
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.6;
	text-shadow: 1px 1px 4px rgb(0 0 0 / 70%);
}
.visually-hidden {
	position: absolute;
	overflow: hidden;
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	border: 0;
	clip-path: inset(50%);
}
@keyframes text-fade {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}
