body {
  background-color: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fce9e9;
}

h1 {
  text-align: center;
  font-size: 50px;
  color: #ff0000;
}

h2 {
  text-align: center;
  font-size: 30px;
  color: #ff0000;
  padding-bottom: 20px;
}

h3 {
  text-align: center;
  font-size: 27px;
  color: #ff0000;
  padding-bottom: 0px;
}

#header-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  max-width: 470px;
  border-radius: 10px;
}

#why {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#why img {
  width: 95%;
  border-radius: 10px;
}

#why .text {
  text-align: center;
}

#why .text ul {
  line-height: 2.1;
}

#thank-you {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 20px;
}

#thank-you img {
  width: 95%;
  border-radius: 10px;
}

#thank-you .text {
  text-align: center;
}

#thank-you .text p {
  padding: 0px 20px;
}

#question {
  padding: 50px 20px 0px 20px;
}

#question h2 {
  padding-bottom: 0px;
}

#question .normal {
  text-align: center;
  display: block;
}

#question .mobile {
  display: none;
}

#question #herz {
  font-size: 200px;
}

@media only screen and (max-width: 600px) {
  #why {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 315px;
  }

  #why img {
    height: 350px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  #thank-you {
    grid-template-columns: 1fr;
    grid-template-rows: 255px 350px;
  }

  #thank-you img {
    height: 350px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 500px) {
  #question .normal {
    display: none;
  }

  #question .mobile {
    display: block;
  }
}