* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(225, 225, 230);
}

p {
  color: #111;
}

h2 {
  color: #111;
}

.hero {
  width: 100%;
  height: 70vh;
  position: relative;
  background-image: url(../img/yogabanner2.jpg);
  background-size: 100%;
  margin-bottom: 80px;
}

.hero .titelGroß {
  position: absolute;
  font-size: 48px;

  color: #eee;
  top: 220px;
  right: 40px;
}

.titelKlein {
  display: none;
}

.contentKlein {
  display: none;
}

.content {
  display: grid;
  grid-template-columns: auto;

  width: 90%;
  margin: 0 auto;
}

.content .angebot {
  display: grid;
  column-gap: 50px;
  grid-template-columns: 50% 50%;
  height: 50vh;
  margin-bottom: 112px;
}

.content .angebot img {
  margin: 0 auto;
  max-width: 90%;
  max-height: 50vh;
}

.content .angebot .contentI h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.content .angebot .contentI p {
  font-size: 20px;
  line-height: 26px;
}

.content .angebot .contentI a {
  font-size: 20px;

  line-height: 26px;
}

.content .angebot .contentI a:hover {
  color: rgb(220, 140, 140);
}

@media screen and (max-width: 1280px) {
  .titelGroß {
    display: none;
  }

  .titelKlein {
    display: block;
    text-align: center;
    margin-bottom: 56px;
  }

  .hero {
    width: 100%;

    position: relative;
    background-image: url(../img/yogabanner2.jpg);
    background-size: cover;
    margin-bottom: 80px;
  }

  .content {
    display: none;
  }

  .contentKlein {
    display: grid;
    grid-template-columns: 340px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .contentKlein .angebot {
    display: grid;
    justify-content: center;
    column-gap: 50px;
    grid-template-columns: auto;
    width: 100%;
    margin-bottom: 112px;
  }

  .contentKlein .angebot img {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 32px;
  }

  .contentKlein .angebot h3 {
    margin-bottom: 16px;
  }

  .contentKlein .angebot .contentI {
  }
}
