body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	box-sizing: border-box;

	background: linear-gradient(-45deg, #282c34, #1a202c, #3b3f47, #1e252f);
	background-size: 400% 400%;
	animation: gradientBG 15s ease infinite;

	color: #61dafb;
	font-family: 'Roboto', sans-serif;
	overflow-x: hidden;
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Stile für die Navigation */
.navbar {
	width: 100%;
	background-color: rgba(40, 44, 52, 0.95);
	padding: 15px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	margin-bottom: 40px; /* Abstand zum ersten Container */
	backdrop-filter: blur(5px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.navbar ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	gap: 30px;
}

.navbar ul li a {
	color: #61dafb;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1em;
	padding: 8px 15px;
	border-radius: 5px;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.navbar ul li a:hover {
	background-color: rgba(97, 218, 251, 0.1);
	color: #a2f277;
	transform: translateY(-2px);
}

/* Stil für den aktiven Link */
.navbar ul li a.active {
	background-color: #a2f277;
	color: #282c34;
	pointer-events: none;
}

.container {
	background-color: rgba(59, 63, 71, 0.9);
	border-radius: 10px;
	padding: 40px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
	text-align: center;
	max-width: 800px;
	width: 90%;
	margin-bottom: 20px;
	backdrop-filter: blur(5px);
}

.container-first {
	background-image: url('header-background.png');
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%; /* Beispiel: Breite des Divs */
	height: 300px; /* Beispiel: Höhe des Divs */
	border: 1px solid #ccc; /* Optional: Um den Div sichtbar zu machen */
	display: flex;
	
	color: white; /* Textfarbe, falls Text im Div ist */
	
	background-color: rgba(59, 63, 71, 0.9);
	border-radius: 10px;
	padding: 40px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
	
	max-width: 800px;
	min-width: 100px;
	min-height: 200px;
	
	margin-top: 80px;
	margin-bottom: 20px;
}

h1 {
	color: #ffda61;
	margin-bottom: 30px;
	font-size: 3em;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
	letter-spacing: 2px;
}

h2 {
	color: #ffda61;
	margin-bottom: 30px;
	font-size: 1.75em;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
	letter-spacing: 2px;
}

/* Stil für den Story-Inhalt / Textblock */
.story-block {
	background-color: rgba(75, 81, 92, 0.9);
	border-radius: 8px;
	padding: 30px;
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: left; /* Text linksbündig für bessere Lesbarkeit */
	line-height: 1.6;
	color: #f0f0f0;
	backdrop-filter: blur(3px);
	font-size: 1.1em;
}

/* Stil für Absätze innerhalb des Story-Blocks */
.story-block p {
	margin-bottom: 1em; /* Abstand zwischen Absätzen */
}

a {
	color: #e0b0ff;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.2em;
	transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
	color: #ffda61;
	text-shadow: 0 0 8px rgba(255, 218, 97, 0.7);
}

footer {
	margin-top: 20px;
	padding: 10px;
	font-size: 0.9em;
	color: #9da0a6;
	width: 100%;
	text-align: center;
}

/* Grundlegende Absatzabstände für alle <p>-Tags innerhalb der Song-Lyrics */
.song-lyrics p {
	margin-bottom: 0.5em; /* Kleiner Abstand zwischen den Zeilen eines Verses */
}

/* Abstand nach Überschriften */
.song-lyrics h1,
.song-lyrics h2,
.song-lyrics h3 {
	margin-bottom: 1.5em; /* Größerer Abstand nach Titel, Künstler und Sektions-Überschriften */
}

/* Abstand nach ganzen Strophen und Sektionen */
.song-lyrics .verse,
.song-lyrics .pre-chorus,
.song-lyrics .recurring-part,
.song-lyrics .outro {
	margin-bottom: 2em; /* Deutlicher Abstand nach jedem Hauptabschnitt des Songs */
	padding-bottom: 0.5em; /* Optional: etwas zusätzlichen Innenabstand unten */
	border-bottom: 1px solid #eee; /* Optional: eine dünne Linie zur Trennung */
	/* border-bottom: none; /* Wenn du die Linie nicht möchtest, das hier nutzen oder die Zeile löschen */
}

/* Letzten Abschnitt keine Trennlinie geben, falls gewünscht */
.song-lyrics .outro {
	border-bottom: none;
}

/* Für den Bereich, in dem die Liebe des Paares erwähnt wird, etwas mehr Betonung */
.song-lyrics .pre-chorus strong {
	line-height: 1.5; /* Etwas mehr Zeilenhöhe für die fettgedruckten Namen */
}

/* Stil für den Hauptcontainer der Lyrics, um den Textfluss zu kontrollieren */
.song-lyrics {
	max-width: 800px; /* Maximale Breite, damit Zeilen nicht zu lang werden */
	margin: 0 auto;   /* Zentriert den Inhalt */
	padding: 20px;    /* Innenabstand zum Rand des Containers */
}