@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", serif;
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  background-color: #20282A;
  overflow-x: hidden;
  max-width: 1500px;
  margin: 0 auto; /*zentriert alles mittig*/
  
}
h1{
    font-weight: 700;
    font-size: 50px;
    color: white;
}
h2{
    font-size: 40px;
    font-weight: 700;
}
p{
    font-size: 14px;
    font-weight: 400;
}
.buttonstyle{
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 0.5px solid #f39201;
    border-radius: 12px;
    text-transform: uppercase;
}
.angebotButton {
    align-self: flex-start;
    text-decoration: none;
    color: black;
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: 0.7px solid white;
    background-color: white;
    padding: 10px 20px;
    border-radius: 12px;
  }

.angebotButton:hover{
  background-color: transparent;
  border-color: white;
  color: white;
}

  .bold{
    font-weight: bold;
  }

  @media (max-width: 1050px){
    h1{
      font-weight: 700;
      font-size: 36px;
      color: white;
  }
  h2{
      font-size: 26px;
      font-weight: 700;
      line-height: 31px;
  }

    .buttonstyle{
      align-self: center;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
      border: 0.5px solid #f39201;
      border-radius: 12px;
      text-transform: uppercase;
  }
  .angebotButton {
      align-self: center;
      text-decoration: none;
      color: black;
      font-size: 12px;
      line-height: 14px;
      font-weight: 600;
      text-transform: uppercase;
      background-color: white;
      padding: 10px 20px;
      border-radius: 12px;
    }
  }