body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}
.instagram-logo-small {
  width: 40px; /* Ändere die Breite nach Bedarf */
  height: auto; /* Damit das Seitenverhältnis erhalten bleibt */
}

.container {
  width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
}

.parallax-window {
  height: 100vh;
  background-image: url('hintergrundbild.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  padding: 20px 0;
}

nav {
  text-align: center;
  margin-bottom: 20px;
}

.nav-button {
  padding: 10px 20px;
  margin-right: 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #555;
}

main {
  padding-top: 100px;
}

.main-content {
  text-align: center;
  padding: 50px 0;
}

footer {
  text-align: center;
  padding: 20px 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-right: 10px;
}

.btn:hover {
  background-color: #555;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .container {
    width: 90%;
    padding: 10px;
  }

  .main-content {
    padding: 20px 0;
  }

.image-section {
  text-align: center;
  margin-top: 20px; /* Platzierung des Bildes nach Bedarf */
}
/* Füge diese CSS-Regeln für das Hamburger-Menü hinzu */
.nav-toggle {
  display: none; /* Verstecke den Toggle-Button standardmäßig */
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

/* Ändere die Navigation für kleinere Bildschirme */
@media screen and (max-width: 768px) {
  nav {
    display: none; /* Verstecke die Navigationselemente standardmäßig */
  }

  .nav-toggle {
    display: block; /* Zeige den Toggle-Button für das Hamburger-Menü */
  }

  .nav-button {
    display: block; /* Ändere das Erscheinungsbild der Nav-Buttons für kleinere Bildschirme */
    margin: 10px 0;
  }
}