#smartphone_headline {
	position: absolute;
	top: -11vw;
	left: 1vw;
	color: #fff;
}

#BandOben {
  width: 100%;
  height: calc(var(--font-size-faktor) * 4.5vw); /* 15% der Bildschirmhöhe */
  background-color: rgba(0,187,171,0.84); /* Hintergrundfarbe anpassen */
  /*position: fixed;*/
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000; /* Z-Index erhöhen, um sicherzustellen, dass es über anderen Elementen liegt */
  border-bottom: 1px solid #ccc; /* Eine Trennlinie von 1px hinzufügen */
}

#menu {
  width: 80%;
  height: 1em; /* 4% der Bildschirmhöhe */
  /*background-color: #f0f0f0; /* Hintergrundfarbe anpassen */
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001; /* Z-Index erhöhen, um sicherzustellen, dass es über anderen Elementen liegt */
  
  display: flex;
  justify-content: center; /* Horizontal ausrichten */
  align-items: center; /* Vertikal ausrichten */
  
  font-size: 1.1vw;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.top-menu {
	background-color: #333;
	padding: 0.6em 0;
}

.top-menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.top-menu ul li {
	display: inline-block;
}

.top-menu ul li a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 0.6em 1.2em; /* Hier kannst du den Abstand zwischen den Menüpunkten einstellen */
}

.top-menu ul li a:hover {
	background-color: #555;
}

#headerbild {
	position: absolute;
	top: calc(var(--font-size-faktor) * 4.5vw);
	width: 80%;
	height: auto;
	text-align: center;
	background-image: url('../bilder/pictogram/grundschule-crumstadt.jpg'); /* Pfad zum Bild anpassen */
	background-size: contain; /* Bildgröße anpassen (cover, contain, etc.) */
	background-position: top; /* Position des Bildes im Container anpassen */
	background-repeat: no-repeat; /* Bildwiederholung ausschalten */	
	border-bottom-right-radius: calc(var(--font-size-faktor) * 0.8vw);
	border-bottom-left-radius: calc(var(--font-size-faktor) * 0.8vw);
}

.scrollenderBereich {
  position: fixed;
  top: -3%; /* Verstecke den Bereich nach oben, so dass 3% sichtbar sind */
  left: 50%;
  transform: translateX(-50%);
  background-color: #f0f0f0;
  width: 80%; /* Breite anpassen, je nach Bedarf */
  height: 6em; /* Höhe anpassen, je nach Bedarf */
  z-index: 1000;
  transition: top 0.3s ease; /* Füge eine sanfte Animation hinzu */
}

#div_headerbild {
	display: flex;
    justify-content: center;
    align-items: center;
	height: auto;
	min-height: calc(var(--font-size-faktor) * 4.5vw + 20vw);
}