h2 {
  font-family: Tahoma, sans-serif;
  font-size: 2em;
  background-image: linear-gradient(90deg, #902a22, #d73518); /* Farbverlauf für den Text */
  -webkit-background-clip: text;  /* Hintergrund wird nur für den Text angewendet */
  -webkit-text-fill-color: transparent; /* Macht den Text transparent, damit der Gradient sichtbar wird */
  display: inline-block;
  text-align: center; /* Damit der Text zentriert ist */
  position: relative;
  padding: 10px 0; /* Etwas Abstand nach oben und unten */
    padding-left: 30px;
  line-height: 1.2;
}

h2 strong {
  font-weight: bold;
    font-size: 1.3em;
}

h2::before{
  content:" ";
  display: block;
  height: 2px;
  width: 20px;
  position: absolute;
  top: 70%;
  left: 0;
  background: red;
}


