body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #333;
  color: white;
  overflow: hidden;
}

.header {
  height: 65vh;
  width: 100%;
  background-image: url(./images/homepages.jpg);
  background-size: cover;
  background-position: top center; /* Bild oben fixieren */
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Text am unteren Rand der Header platzieren */
  color: white;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  padding-bottom: 5px; /* Abstand zum unteren Rand */
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-size: 60px;
  box-sizing: border-box;
  padding-top: 10px; /* Verringere den oberen Abstand des Containers */
}

.marquee {
  display: inline-block;
  animation: scroll-left 40s linear infinite;
  word-spacing: 60px;
  font-weight: bold;
  color: orange;
  animation-play-state: running;
  text-shadow: none; /* Entfernt den dunklen Schein */
}

.lauftext span {
  display: inline-block;
  animation: laufAnimation 5s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.content {
  height: 35vh;
  padding: 0 30px;
  background-color: #333;
  font-size: 19px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertikal zentrieren */
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.45;
}

.text-below {
  font-size: 27px;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.kontakt-info {
  margin-bottom: 15px;
}

.kontakt-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.kontakt-links a {
  color: orange;
  text-decoration: none;
}

.kontakt-links i {
  font-size: 34px;
  transition: color 0.3s ease;
}

.kontakt-links a:hover i {
  color: #ffb84d;
}