/* Gemeinsame Stile für alle Geräte */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #333;
  color: #fff;
  margin: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

header img {
  height: 40px;
  margin-right: 10px;
  margin: 0;
}

nav {
  background-color: #f1f1f1;
  padding: 10px;
  margin: 0;
  position: sticky;
  top: 58px; /* Höhe des Headers */
  z-index: 100;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 20px;
}

nav ul li a:hover {
  background-color: #ddd;
}

.email-link {
	text-decoration: none; /* Entfernt die Unterstreichung */
	color: black; /* Ändert die Schriftfarbe auf Schwarz */
}

.logo-container {
  position: relative;
  display: inline-block;
}

.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-text {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  width: 100%;
  box-sizing: border-box;
}

.logo-text:nth-child(1) {
  color: white;
}

.logo-text:nth-child(2) {
  background-color: white;
  color: black;
}

section {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  position: sticky;
  bottom: 0;
  z-index: 100;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.image-container {
  max-width: 600px;
  margin-bottom: 20px;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

/* Stile für Mobilgeräte */
@media (max-width: 480px) {
  header img {
    height: 30px;
    margin-right: 5px;
  }
  
  .logo-text {
    font-size: 18px;
    padding: 3px;
  }
  
  nav ul li a {
    padding: 15px 30px;
    font-size: 40px;
  }
  
  section {
    padding: 10px;
  }
  
  footer {
    font-size: 12px;
  }
}
