body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #dedede;
}

header {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 20px;
}

h1 {
	font-size: 36px;
}

nav {
	background-color: #444;
	color: white;
	padding: 10px;
}

nav ul {
	list-style-type: none;
	padding: 0;
	text-align: center;
}

nav ul li {
	display: inline;
	margin-right: 20px;
}

.container {
	max-width: 800px;
	margin: 20px auto;
	padding: 20px;
	background-color: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

img {
	max-width: 100%;
	height: auto;
}

.caption {
	text-align: center;
	font-style: italic;
	margin-top: 10px;
	margin-bottom: 30px;
}

footer {
	text-align: center;
	background-color: #333;
	color: white;
	padding: 10px;
}

#scrollToTopButton {
	position: fixed;
	bottom: 10px;
	right: 10px;
	padding: 10px;
	background-color: #e5e5e5; /* Hintergrundfarbe des Buttons */
	color: black;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schatten für den Button */
	opacity: 0.5; /* Hier kannst du den gewünschten Wert zwischen 0 und 1 einstellen */
	width: 50px;
	height: 50px;
}

#scrollNext {
	position: fixed;
	bottom: 10px; /* Abstand vom unteren Rand */
	left: 10px; /* Abstand vom linken Rand */
	padding: 10px;
	background-color: #e5e5e5; /* Hintergrundfarbe des Buttons */
	color: black;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schatten für den Button */
	opacity: 0.5; /* Hier kannst du den gewünschten Wert zwischen 0 und 1 einstellen */
	width: 50px;
	height: 50px;
}

#newButton {
	position: absolute;
	top: 10px; /* Abstand vom oberen Rand */
	left: 10px; /* Abstand vom linken Rand */
	padding: 5px;
	background-color: #e5e5e5; /* Hintergrundfarbe des Buttons */
	color: black;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schatten für den Button */
	opacity: 0.5; /* Hier kannst du den gewünschten Wert zwischen 0 und 1 einstellen */
	width: 70px;
	height: 20px;
	line-height: 0px; /* Gleiche Höhe wie der Button für vertikale Zentrierung */
	text-align: center; /* Text horizontal zentrieren */
}

#AuswahlButton {
	position: absolute;
	top: 10px; /* Abstand vom oberen Rand */
	left: 100px; /* Abstand vom linken Rand */
	padding: 5px;
	background-color: #e5e5e5; /* Hintergrundfarbe des Buttons */
	color: black;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schatten für den Button */
	opacity: 0.5; /* Hier kannst du den gewünschten Wert zwischen 0 und 1 einstellen */
	width: 70px;
	height: 20px;
	line-height: 0px; /* Gleiche Höhe wie der Button für vertikale Zentrierung */
	text-align: center; /* Text horizontal zentrieren */
}

#SlideShow {
	position: absolute;
	top: 10px; /* Abstand vom oberen Rand */
	left: 200px; /* Abstand vom linken Rand */
	padding: 5px;
	background-color: #e5e5e5; /* Hintergrundfarbe des Buttons */
	color: black;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Schatten für den Button */
	opacity: 0.5; /* Hier kannst du den gewünschten Wert zwischen 0 und 1 einstellen */
	width: 75px;
	height: 20px;
	line-height: 0px; /* Gleiche Höhe wie der Button für vertikale Zentrierung */
	text-align: center; /* Text horizontal zentrieren */
}


#hamburger-menu {
	position: fixed;
	top: 10px;
	right: 15px;
	cursor: pointer;
	z-index: 1000; /* Stelle sicher, dass das Menü über anderen Elementen liegt */
	color: #707070;
}

#modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding: 20px;
    overflow-y: auto; /* Füge eine vertikale Scrollbar hinzu */
}

#heading-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    color: #fff;
    max-height: 85vh; /* Setze die maximale Höhe für die Scrollbar */
    overflow-y: auto; /* Füge eine vertikale Scrollbar hinzu */
}

#heading-list li {
    margin-bottom: 10px;
    cursor: pointer;
}

.Bild {
	max-width: 100%;
	height: auto;
	transform: translateX(-100px);
	opacity: 0;
	transition: 700ms;
}

.Bild.show {
	transform: translateX(0);
	opacity: 1;
}

	
/* Für Mobiltelefone mit einer maximalen Breite von 480px */
@media screen and (max-width: 500px) {

.container {
	max-width: 86vw;
	margin: 20px auto;
	padding: 20px;
	background-color: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

}