/* Prevent header from overflowing the screen. */
.d-page--header {
  max-width: 100vw;
}

/* Style upper part of welcome page */
.welcomeheader {
    display: flex;
    gap: 2em;
    align-items: center;
}

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

.welcomeheader img {
    height: 15vw;
    min-height: 150px;
    margin-left: 4vw;
    margin-top: 16px;
    flex-direction: row;
    justify-content: space-around;
    gap: 3em;
}

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

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

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

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