* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: Arial, sans-serif;
  background-color: #f2f5fa;
  color: #ffffff;
}

header {
  background-color: #2d4a50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0px;
}

.logo img {
  height: 50px;
}

.hoerer-anzeige2 {
  margin-left: 40px; /* Abstand vom rechten Rand */
    font-size: 0.9rem;
  color: #2d4a50;
  background-color: #eae7dd;
  padding: 5px 10px;
  border-radius: 0px;
  font-weight: bold;
}

nav ul {
  margin-right: 40px; /* Abstand vom rechten Rand */
    list-style: none;
  display: flex;
  gap: 0px;
}

nav ul li a {
  margin-right: 40px; /* Abstand vom rechten Rand */
    text-decoration: none;
  color: white;
  font-weight: bold;
}


#ticker2 {
  background-color: #eae7dd;
  color: #2d4a50;
  font-family: sans-serif;
  font-size: 1.2rem;
  padding: 10px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  width: 99%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}



.textseite {
  display: flex;
  justify-content: center; /* Zentriert horizontal */
  align-items: center;     /* Zentriert vertikal, nur wenn Höhe gesetzt */
  flex-direction: column;  /* Stackt Inhalte vertikal */
  text-align: center;      /* Text zentrieren */
  padding: 40px 20px;
    background-color: #978e89; /* Helles Beige, harmonisch mit deiner Website */
}

.textseite .wrapper {
  max-width: 700px;        /* Eingrenzen, damit nicht alles zu breit wird */
  width: 100%;
  height: 790px;
}



.footer {
  background-color: #2d4a50;
  color: #ccc;
  text-align: center;
  padding: 0px;
  font-size: 0.9em;
  margin-top: 0px;
}

.footer a {
  color: #9cf;
  text-decoration: none;
  margin: 0 0px;
}

.footer a:hover {
  text-decoration: underline;
}