@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');
@import url('https://fonts.cdnfonts.com/css/amithen'); /* Ersatz für Amithen */

body {
  margin: 0;
  width: 100vw;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  color: #000;
  background: #fff;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5% 5% 0 5%;
}

header img {
  height: 40px;
}

header h1 {
  font-family: 'Amithen', cursive;
  font-size: 2rem;
  margin: 0;
}

header a {
  text-decoration: none;
  color: #729E2D;
  font-size: 1.5rem;
}

main {
  padding: 5%;
  text-align: center;
}

.logo {
  width: 40%;
  margin: 0 auto 20px;
  display: block;
}
 .big-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 30%;
      text-align: center;
    }
    .big-btn img {
      height: 40px;
      margin-bottom: 10px;
    }
    .big-btn h2 {
      margin: 0;
      font-size: 1.2rem;
    }
button, .btn {
  display: block;
  width: 85%;
  padding: 15px;
  margin: 10px 0;
  background: rgba(114,158,45,0.2);
  color: #729E2D;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  text-decoration: none;
}
.y{
     background: rgba(217,185,5,0.2);
    color: black; 
}
button:active, .btn:active {
  opacity: 0.7;
}
.btn-icon {
  display: flex;
  height:50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-icon img {
  height: 40px;
  margin-bottom: 10px;
}

.btn-icon span {
  font-size: 1.1rem;
  font-weight: 600;
}

.input-text {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #000;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
}

.grid {
  display: grid;
  gap: 15px;
}

@media (min-width: 768px) {
  .grid-photos {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .grid-photos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-photos img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

h3 {
  margin: 20px 0;
}

h5 {
  margin: 10px 0 0 0;
}
