@charset "utf-8";

/* =========================
   Reset & Basis
========================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100svh;
	font-family: Arial, sans-serif;
	color: #ffffff;

	/* Fallback */
	background-color: #1a1a1a;

	/* Hintergrundbild */
	background-image:
		linear-gradient(
			rgba(0, 0, 0, 0.55),
			rgba(0, 0, 0, 0.55)
		),
		url("pics/landscape-3908270_1920.jpg");

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* =========================
   Hauptbereich
========================= */
.container {
	min-height: 100svh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;

	padding: 1.5rem;

	font-size: clamp(20px, 4vw, 36px);
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* Text */
.headline {
	font-weight: bold;
	max-width: 42ch;
	line-height: 1.4;
}

/* =========================
   Footer
========================= */
footer {
	position: fixed;
	bottom: 10px;
	right: 5vw;

	font-size: 14px;
	opacity: 0.85;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* =========================
   Light Mode Anpassung
========================= */
@media (prefers-color-scheme: light) {
	body {
		background-image:
			linear-gradient(
				rgba(0, 0, 0, 0.35),
				rgba(0, 0, 0, 0.35)
			),
			url("pics/landscape-3908270_1920.jpg");
	}
}