/* #landing {
    display: flex;
    flex-direction: column;
} */

#subHeader {
    color: white;
    font-family: sans-serif;
    text-align: center;
}

p {
    color: white;
    font-family: sans-serif;
}

h2 {
    color: white;
    font-family: sans-serif;
}

#headline {
    font-size: 45px;
    background-image: linear-gradient(to right, #1351a0, #ff6699);
    -webkit-background-clip: text;
    /* Safari/Chrome-Browsers */
    background-clip: text;
    color: transparent;
    /* Den Text transparent machen */
    font-family: sans-serif;
    margin: auto;
    margin-top: 40px;
    width: 80%;
    text-align: center;
    word-wrap: break-word;
    /* Text wird umgebrochen, wenn er nicht in die Zeile passt */
    overflow-wrap: break-word;
    /* Definiert, wie der Text bei Bedarf umgebrochen wird */
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: 150px;
    border-radius: 20%;
}


.screenshot {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: 200px;
    border-radius: 15px;
}

.image-container {
    display: flex;
    flex-direction: rows;
    justify-content: center;
    margin-top: 30px;
}

.image-container a {
    margin-right: 20px;
    /* Abstand zwischen den Bildern */
}

.image-container a:last-child {
    margin-right: 0;
    /* Kein Abstand nach dem letzten Bild */
}

/* Media Query für Bildschirmgrößen kleiner als 300px */
@media screen and (max-width: 300px) {
    .image-container {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        flex-direction: column;
        /* Anordnung in Spalten */
        align-content: center;
        align-items: center;
    }

    .image-container a {
        margin-right: 0;
        /* Kein Abstand zwischen den Bildern */
    }

    .image-container a:last-child {
        margin-right: 0;
        /* Kein Abstand nach dem letzten Bild */
    }
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    margin-top: 50px;
    /* Weitere Anpassungen nach Bedarf */
  }

  /* Media Query für Bildschirmgrößen kleiner als 600px */
@media screen and (max-width: 400px) {
    .container {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Zentriert horizontal */
        align-items: center; /* Zentriert vertikal */
        margin-top: 50px;
        /* Weitere Anpassungen nach Bedarf */
      }
}
  
  .leftImage {
    flex: 0 0 auto; /* Behält die Größe des Bildes bei */
    margin-right: 40px; /* Abstand zwischen Bild und Text */
    margin-top: 20px;
    /* Weitere Anpassungen nach Bedarf */
  }

  .rightImage {
    flex: 0 0 auto; /* Behält die Größe des Bildes bei */
    margin-left: 40px; /* Abstand zwischen Bild und Text */
    /* Weitere Anpassungen nach Bedarf */
  }
  
  .image img {
    max-width: 100%; /* Damit das Bild responsiv ist */
    height: auto;
    display: block; /* Entfernt den unteren Abstand */
  }

  .content {
    width: 50%;
    max-width: 400px;
  }

  #impressum {
    width: 100px;
    text-align: center;
    font-size: smaller;
  }

  #copyright {
    font-size: smaller;
    margin: 10px;
  }

  #footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }