*,
*::after,
*::before{
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

body{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: linear-gradient(180deg, #9de697, #175a11);
    color: #000000;
    min-height: 100vh;
    line-height: 1.6;
    transition: 0.6s ease;
   
}

.bento-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.titel,
.header{
    grid-column: 1 / -1;
    text-align: center;
    animation: fadeIn 1s ease;
}
h1 {
  font-size: 2.6rem;
  color: #000000;
}
h2 {
  margin-top: 0.5rem;
  font-size: 1.8rem;
  color: #000000;
}
h3 {
  margin-bottom: 0.25rem;
  color: #000000;
  text-align: center;
}
   


.card {
  background: #41913fc9;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  animation: fadeInUp 0.8s ease;
  
}

.card:hover {
  transform: translateY(-6px);
  background: #95ebbc;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.12);
}
.Internet{
  padding-top: clamp(2rem, 6vw, 5rem);
}

.andereGarden {
    width: 100%;
    max-width: 1200px;  /* optional, passt zum Container */
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 1rem;
    background: #41913fc9;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);

    text-align: center;  /* Zentriert Überschriften und Absätze */
}

.andereGarden .garden-group {
    margin-bottom: 1.5rem;
}

.andereGarden .garden-group h4,
.andereGarden .garden-group p,
.andereGarden .garden-group a {
    text-align: center;  /* Text wirklich zentriert */
}

.bento-box li {
  list-style: none;
  margin-bottom: 0.4rem;
  text-align: center;
}

a {
  color: #0011ff;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover{
  color: #001a66;
}

img{
  width: 110px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto 0;
  border-radius: 10%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15)
}

img:hover {
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  .bento-box { padding: 1rem; }
}



