/* Vereinsname im Kopf: passt sich der Bildschirmbreite an */
.container-header .navbar-brand {
  max-width: 100%;
  white-space: normal;
}
.container-header .brand-logo {
  font-size: clamp(1.4rem, 6vw, 2.6rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  color: #1f3a4a;
}
.container-header .site-description {
  font-size: clamp(0.95rem, 3.5vw, 1.2rem);
  color: #1f3a4a;
}

/* Verhindert, dass irgendein Element die Seite seitlich verbreitert */
html, body {
  overflow-x: hidden;
}
