body {
  background-color: #f2f2f2; /* Leichtes Grau */
}

.member, .clock{
  color: rgb(106, 187, 188);
  font-size: 1.5vw;
}


.headerzeile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 80%;
  height: 20vh;
}

.Überschrift {
  color: red;
  font-size: 1.5vw;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
  vertical-align: middle;

  @media screen and (min-width:800px) {
    color: rgb(106, 187, 188);
    font-size: 2vw;
    padding-left: 10px;
    white-space: nowrap;
    vertical-align: middle;
  }
}

.anmeldezeile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 80%;
}

.responsive-image {
  width: 50vw; /* Das Bild ist 50% der Viewport-Breite */
  height: auto;
  max-width: 100%; /* Das Bild wird niemals breiter als seine natürliche Breite */
}

.buttonHeader {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.buttonHeader:hover {
  background-color: #555;
}

.containerMeinHeader {
  display: flex;
  padding: 20px;
  align-items: center; /* Zentriert die Elemente vertikal */
}
.headingHeader {
  margin-right: 50px; /* Abstand zwischen Überschrift und Button */
}


.navbar {
  background-color: #333;
  padding: 10px 20px;
}

.nav-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  display: inline;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
}

.nav-list li a:hover {
  background-color: #555;
}