html,
body {
  margin: 0;
  padding: o;
  font-family: sans-serif;
}

.hintergrundBild {
  top: 0;
  left: 0;
  position: fixed;
  height: 110%;
  width: 100%;
  z-index: -999;
  object-fit: cover;
}

/* Header */

.header {
  width: 100%;
  height: 6vw;
  position: fixed;
  background-color: #8e8321;
  top: 0;
  display: grid;
  grid-template-columns: 13% 57% 10% 10% 10%;
  grid-template-areas: "logo title instaLogo whatsappLogo gmailLogo";
  z-index: 10000;
}

.logo {
  border-radius: 15px;
  height: 6vw;
  width: 6vw;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0.5rem;
  bottom: 0;
}

.title {
  height: 6rem;
  font-family: "Mrs Saint Delafield", cursive;
  font-size: 6vw;
  margin: 0;
  color: white;
  font-weight: lighter;
  text-align: center;
}

.social {
  margin: auto;
  top: 0;
  bottom: 0;
  position: absolute;
  height: auto;
  width: 4vw;
}

/* Inhalt */
.parentBox {
  display: grid;
  grid-template-columns: 3vw 1fr 6vw 1fr 3vw;
  grid-template-rows: 5vw 1vw repeat(3, 1fr) 3vw;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 95%;
  height: auto;
  margin: 2.5%;
  border-radius: 15px;
  background-color: hsla(54, 62%, 34%, 0.5);
  
}

.parentBox1 { 
  margin: 2.5%;
  margin-top: 11vw;
  text-align: center;
  width: 95%;
  height: 70vh;
  border-radius: 15px;
  background-color: hsla(54, 62%, 34%, 0.5);
}
.div4 {
  grid-area: 1 / 2 / 2 / 5;
}
.div5 {
  grid-area: 3 / 2 / 5 / 5;
}
.div1 {
  grid-area: 1 / 2 / 2 / 5;
}
.div2 {
  grid-area: 3 / 2 / 6 / 3;
  margin: 1%;
}
.div3 {
  grid-area: 3 / 4 / 6 / 5;
}

.überschrift {
  text-align: center;
}

.picHolder {
  text-align: center;
}

.new1 {
  height: 15vw;
}

.childCoaching,
.childWaldgruppe,
.childWaldsinne,
.childÜberMich {
  background-color: hsla(51, 43%, 78%, 0.8);
  border-radius: 15px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 1), 0 1px 1px 0 rgba(0, 0, 0, 1);
  font-size: 14;
  display: flex;
  height: auto;
  padding: 12px;
}

.bildWaldgruppe,
.bildWaldsinne,
.bildÜberMich {
  width: 100%;
  height: 45vw;
  border-radius: 15px;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 1), 0 1px 3px 0 rgba(0, 0, 0, 1);
  object-fit: cover;
  display: flex;
}

.bildCoaching {
  width: 100%;
  height: 70vw;
  border-radius: 15px;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 1), 0 1px 3px 0 rgba(0, 0, 0, 1);
  object-fit: cover;
}

.überschrift {
  font-size: 30;
}

/* Footer */

.footer {
  width: 100%;
  height: 3rem;
  background-color: #dfd8ae;
  display: flex;
  gap: 3%;
  border-radius: 10px 10px 0 0;
}

.footerText {
  color: gray;
}

@media only screen and (max-width: 1000px) {
  .header {
    grid-template-columns: 0% 70% 10% 10% 10%;
    grid-template-areas: "logo title instaLogo whatsappLogo gmailLogo";
    height: 12vw;
  }

  .logo {
    opacity: 0;
  }

  .title {
    font-size: 9vw;
  }

  .social {
    height: auto;
    width: 6vw;
  }

  .parentBox1 {
    margin-top: 15vw;
  }

  .new1 {
    height: 30vw;
  }

  .parentBox {
    height: auto;
    display: grid;
    grid-template-columns: 10vw 1fr 10vw;
    grid-template-rows: 50px 1vw 1fr 5vw auto 5vw;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .parentBox1 {
    grid-template-rows: 50px 1vw repeat(2, 1fr) 5vw;
  }

  .div1 {
    grid-area: 1 / 2 / 2 / 3;
  }
  .div2 {
    grid-area: 3 / 2 / 4 / 3;
    
  }
  .div3 {
    grid-area: 5 / 2 / 6 / 3;
  }

  .überschriftBox {
    font-size: 25;
    height: auto;
  }

  .childCoaching,
  .childWaldgruppe,
  .childWaldsinne,
  .childÜberMich {
    font-size: 14;
    height: auto;
  }
}
