
/* Button-Stil */
#topButton {
  display: none; /* Standardmäßig versteckt */
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #2f6736;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  z-index: 9999;
  font-family: 'Source Sans Pro', sans-serif;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}


@media (min-height: 1001px) and (max-height: 1400px) { 
#topButton.visible:hover {
  opacity: 1;
}

#topButton.visible {
  opacity: 0.7;
  display: block;
  pointer-events: auto;
}
}

.landing-page-photo {
  max-width: 100%;
  height: auto; 
  aspect-ratio: 427 / 570; 
  object-fit: cover; 
}