* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  background-image: url('/img/bg1.jpeg');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(5px); /* Weichzeichnungseffekt, erhöhen oder verringern Sie den Wert, um den Effekt anzupassen */
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.navigation{
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(255, 255, 255, 0.5); /* Hintergrundfarbe hinzufügen, um den Kontrast zu erhöhen */
  left: 10px;
  top: 20px;
  font-size: 1rem;
  backdrop-filter: blur(5px); /* Hintergrundunschärfe anwenden */
  padding: 1rem;
  border-radius: 8px;

}

.navigation .item{
  padding: 5px 10px;


}
.main{
  overflow:scroll; padding-bottom:10px; max-height: 50vh;
}
.emoji {
  font-size: 2rem;
}
.navigation .item a{
  color: rgb(50,50,50);
  text-decoration: none;
  font-weight: bold;
  transition: color 1s;
  text-shadow: 2px 2px 4px rgba(128, 128, 128, 1); /* Grauen Schatten hinzufügen */

}

.navigation .item:hover a{
  color: #0b3d0f;
}



.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  overflow: hidden;
  top: 25%;
  width: 100%;
  min-height: 30%;
  padding: 2rem;
  box-sizing: border-box;
}

h1 {
  color: #0b3d0f;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(128, 128, 128, 0.5); /* Grauen Schatten hinzufügen */
}

.logo {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 5rem;
}
@media (max-width: 768px) {
  h1, h2, h3{
    font-size: 1.1rem; /* Schriftgröße auf Mobilgeräten ändern */
  }
  h4{
    font-size: 1rem; /* Schriftgröße auf Mobilgeräten ändern */
  }
  .navigation{
    padding-top:5px;
    padding-bottom:5px;
    font-size: 0.8rem;
    flex-direction: column
  }
  .logo {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 3rem;
  }
}


p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.button {
  background-color: #0b3d0f;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 1s;
}
.button:hover{
  background-color: rgb(57, 99, 151);

}

.emoji {
  font-size: 3rem; /* Größe des Emojis */
  position: fixed; /* Fixierte Positionierung ermöglicht das Platzieren überall auf der Seite */
  z-index: 1000; /* Stellt sicher, dass das Emoji über anderen Elementen liegt */
  transition: all 0.5s ease; /* Optional: Animation für das Ein- und Ausblenden */
}
.hidden {
  visibility: hidden;
  opacity: 0;
}
img {
  /* Add the blur effect */
}

.inner-container {
  backdrop-filter: blur(5px); /* Hintergrundunschärfe anwenden */
  padding: 1rem;
  border-radius: 8px;
  width:100%;
  background-color: rgba(255, 255, 255, 0.5); /* Hintergrundfarbe hinzufügen, um den Kontrast zu erhöhen */
}
