.Angebote {
    display: flex;
    position: relative;
    font-family: 'ZeitungPro-Black-_1_.ttf';
    max-width: 80%;
    justify-content: space-between;
    background-color: white;
    color: var(--orange-for);
    padding: 3em;
    flex-wrap: wrap;
    margin: auto;
  
  }
  
  .Angebote > *{
    display: flex;
    flex-direction: column; 
    width: 40em;
    padding: 2rem;
    flex-basis: 45%;
    flex-grow: 1;
  }
  
  .AngeboteIndividuell img {
      max-width: 100%;
  }
  
  .Angebote p:nth-child(1) {
    color: var(--green-for);
    font-size: 1rem;
    font-family: ZeitungPro-Black-_1_;
}

.Angebote p:nth-child(3) {
  color: white;
  background-color: var(--orange-for);
  max-width: 15%;
  padding: 2%
}
.Angebote p:nth-child(4) {
    color: var(--orange-for);
    font-size: 1rem;
}

/* das ist auf der Seite DIYRÖSTEN inkl Kalender etc */
.detailsDIY {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  background-color: var(--green-for);
  width:80%;
  color: white;
  padding: 3rem;
  margin: auto;
}

.detailsDIY p{
  font-size: 1.2rem;
  line-height: 3rem;
}

.detailsDIYDauer {
  display: flex;
  flex-direction: column;
  align-items: end;
  transform: translateX(-50px);

}

.detailsDIYBuchen {
 display: flex;
 justify-content: center;
 padding-top: 3rem;
}


.Königsdisziplin{
 display: flex;
 width: 80%;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 background-color: var(--orange-for);
 color: white;
 margin: auto;
 margin-top: 4rem;
 margin-bottom: 4rem;
}

.Königsdisziplin h3{
  font-family: 'ZeitungPro-Black-_1_';
  font-size: 3rem;
  padding-left: 2rem;;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.Königsdisziplin p{
font-size: 1.2rem;
text-align: center;
margin: auto;
padding: 2rem;
padding-bottom: 2rem;

}


  @media (max-width: 600px) {
    .Angebote h2 {
      font-size: 2rem;
    }

    .Angebote p {
      font-size: 1.4rem;
    }
    .Angebote {
        max-width: 20%;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .Angebote > * {
        flex-basis: 100%; /* Volle Breite auf Handy */
        width: 100vw;
    }

    .AngeboteIndividuell img {
      max-width: 100%;
  }

  }