/* Allgemeine Einstellungen */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  color: #333;
}

.language-switcher {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

/* Content Bereich */
.content {
  padding: 2rem; /* Standard-Padding (links und rechts) */
  min-height: 100vh;
  background-color: #fff;
}

.navbar {
  background-color: #f8f9fa;
}

.navbar-brand {
  font-weight: bold;
  color: #007bff;
}

.navbar-brand:hover {
  color: #0056b3;
}

.nav-link {
  font-size: 0.875rem; /* Schriftgröße leicht verkleinern */
  color: #007bff;
}

.nav-link:hover {
  color: #0056b3;
}

.list-group-item a {
  color: #007bff;
}

.list-group-item a:hover {
  text-decoration: underline;
}

/* Standardgrößen für größere Bildschirme */
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.3rem;
}

.responsive-img {
  max-width: 40%; /* Standardbreite für größere Viewports */
  height: auto;
  transition: all 0.3s ease; /* Sanfter Übergang bei Größenänderung */
}

/* Anpassung für kleinere Bildschirme */
@media (max-width: 768px) {
  .content {
    padding: 0.5rem; /* Reduziertes Padding */
  }
  h1 {
    font-size: 1.5rem; /* Kleinere Größe für H1 */
  }

  h2 {
    font-size: 1.2rem; /* Kleinere Größe für H2 */
  }

  h4 {
    font-size: 1rem; /* Kleinere Größe für H4 */
  }
  .responsive-img {
    max-width: 90%; /* Breite für Viewports < 768px */
  }
}
