* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	width: 100%;
	overflow: hidden;
}

body {
	background-image: url('../img/samuelkuemmel2026_lead-to-change.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: pacaembu, sans-serif;
	font-weight: 300;
	font-style: normal;
	color: white;
	text-align: center;
	padding: 0 5%; /* Seitlicher Abstand */
}

h1, h2 {
	/* Schriftgröße dynamisch anpassen, aber nie zu klein werden lassen */
	font-size: min(8vw, 6rem); /* Maximal 8 % der Viewport-Breite oder 6rem */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	letter-spacing: 0.1em;
	line-height: 1.1;
	margin: 0;
	white-space: nowrap; /* Kein Zeilenumbruch */
	width: 100%; /* Volle Breite des Containers nutzen */
	display: block; /* Sicherstellen, dass es als Block-Element gerendert wird */
}

h1 {
	font-weight: 700;
}

h2 {
	font-weight: 300;
	transition: opacity 0.5s ease-in-out;
}
