@media (max-width: 600px) {
  .navcontainer {
      background-color: #f9f9f9;
      padding: 10px 20px;
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
      overflow: hidden;
  }
}
.gallery{
  margin-bottom: 20%;
}

/* Stil für den Audio-Player */
.audio-player {
    display: flex;
    align-items: center;
  }
  
  .audio-controls {
    margin-left: 10px;
  }
  
  /* Stil für die Schaltflächen des Audio-Players */
  .audio-controls button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .audio-controls button:hover {
    background-color: #45a049;
  }
  
  /* Stil für das Audioplayer-Element */
  .audio-player audio {
    width: 300px;
    margin-top: 10px;
  }
  




/* styles.css */
.pic1 {
  position: relative;
  background-image: url("images/Mousestd_1%20-%20titleimage_cut.jpg");
  height: 600px;
  background-size: cover; /* Das Bild so skalieren, dass es die gesamte Div abdeckt */
  background-position: center; /* Das Bild zentrieren */
}

.pic1 img {
  display: none; /* Das Bild ausblenden, da wir es als Hintergrundbild verwenden */
}

.pic1:hover img {
  transform: scale(1.1); /* Das Bild beim Hover etwas vergrößern */
}


