.welcomeheader {
    display: flex;
    gap: 2em;
    align-items: center;
}

.welcomeheader h1 {
    line-height: 1.5;
    font-size: x-large;
}

.welcomeheader img {
    height: 20em; 
    margin-left: 5em;
    margin-top: 16px;
    flex-direction: row;
    justify-content: space-around;
    gap: 3em;
}

.welcome-paragraph {
    margin-left: 5em;
    margin-right: 5em;
    text-align: center;
    margin-top: 1em;
}

@media (max-width: 600px) {
    .welcomeheader {
    flex-direction: column; /* Elemente untereinander */
    align-items: center; /* linksbündig */
    text-align: center;
    }
    .welcomeheader img {
        margin-left: 0;
    }
}

.welcome-details {
  margin-left: 5em;
  margin-right: 5em;
  margin-bottom: 2em;
  cursor: default;
  text-align: justify;
}

ul.datenschutz{
  list-style-type: '> '; 
  list-style-position: outside;
}


/*
<!DOCTYPE html>
<html lang="de">
<head>
  <meta charset="UTF-8">
  <title>Zentrierte Überschrift</title>
  <style>
    .container {
      display: flex;
      align-items: center; 
      gap: 20px;
      padding: 10px;
    }

    .container img {
      width: 120px;
      height: auto;
    }

    .container h1 {
      margin: 0;
      font-size: 1.5em;
    }


    @media (max-width: 600px) {
      .container {
        flex-direction: column;
        align-items: flex-start;
      }

      .container h1 {
        font-size: 1.2em;
      }
    }
  </style>
</head>
<body>
  <div class="container">
    bild.jpg
    <h1>Meine Überschrift</h1>
  </div>
</body>
</html> 
*/