body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #fff;
}

.hero {
  position: relative;
  background-image: url('https://www.top-magazin-frankfurt.de/wp-content/uploads/2021/08/Top-Magazin-Frankfurt-Home-Skyline.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Mindesthöhe auf die volle Bildschirmhöhe setzen */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  z-index: 1;
}

.hero h1 {
  font-size: 36px;
  color: #fff;
}

.hero p {
  font-size: 18px;
  margin-top: 20px;
  color: #fff;
}

.contact-content {
  margin-top: 20px; /* Abstand zwischen dem Hauptinhalt und dem Kontakt-Bereich hinzufügen */
  text-align: center;
}

.contact h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.email-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #c90c0f;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
}

.email-button:hover {
  background-color: #333;
}

.footer {
  background-color: #333;
  text-align: center;
  padding: 10px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
