button {
  background-color: rgb(41, 66, 35);
  color: rgb(199, 212, 171);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: 2px solid rgb(41, 66, 35);
  cursor: pointer;
}

button:hover {
  background-color: rgb(152, 204, 39);
  color: rgb(41, 66, 35);
}

button:focus-visible {
  outline: 3px solid blue;
  outline-offset: 3px;
}

button:active {
  background-color: darkgray;
  color: white;
  transform: scale(0.97);
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.seiten-navigation {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  background: rgb(196, 98, 74);
  border-bottom: solid rgb(41, 66, 35);
  padding: 0.75rem 1rem;
}

.seiten-navigation ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

section[id] {
  scroll-margin-top: 6rem;
}

html {
  scroll-behavior: smooth;
}

a {
  color: rgb(41, 66, 35);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}

a:hover {
  color: rgb(199, 212, 171);
  text-decoration: underline wavy;
}

a:focus-visible {
  outline: 3px solid blue;
  outline-offset: 3px;
}

a:active {
  color: red;
}

@font-face {
  font-family: "ABCDiatype";
  src: url("ABCStefan-Simple-Trial.otf") format("opentype");
  font-weight: 1000;
  font-style: normal;
}
body {
  font-family: "ABCDiatype", sans-serif;
}

#gewaechshaus,
#lauschen,
#pflanze {
  background-color: rgb(199, 212, 171);
}

#headline2 {
  color: rgb(196, 98, 74);
}

footer {
  background-color: rgb(196, 98, 74);
  border: solid;
  color: rgb(41, 66, 35);
}

.inner-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  color: rgb(41, 66, 35);
}

.swiper {
  background-color: rgb(199, 212, 171);
  width: 100%;
  height: 600px;
  color: rgb(41, 66, 35);
}

.swiper-button-prev {
  color: rgb(196, 98, 74);
}

.swiper-pagination-bullet {
  color: rgb(196, 98, 74);
}

.swiper img {
  width: auto;
  height: auto;
}

.lausch-animation {
  width: 100%;
  height: 300px;
  background-color: rgb(199, 212, 171);
  border: solid rgb(41, 66, 35);
}

@keyframes lauschen {
  0% {
    background-color: #9d8771;
  }
  10% {
    background-color: #7a5f4b;
  }
  20% {
    background-color: #004e9d;
  }
  30% {
    background-color: #0a7db8;
  }
  40% {
    background-color: #1f9d8a;
  }
  50% {
    background-color: #6cbf57;
  }
  60% {
    background-color: #d0a63c;
  }
  70% {
    background-color: #c76b32;
  }
  80% {
    background-color: #a3474b;
  }
  90% {
    background-color: #7b4fa3;
  }
  100% {
    background-color: #bcb1aa;
  }
}
.lausch-animation.is-playing {
  animation: lauschen 10s infinite;
}

.lausch-animation.is-fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}

/*# sourceMappingURL=style.css.map */
