body {
    font-family: 'Open Sans', sans-serif;
    background-color: antiquewhite;
    height: 100vh;
}

.header_eingebunden {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
}




.projekt_news_images_container1 {
    display: flex;
    flex-wrap: wrap; /* Erlauben Sie das Umwickeln der Elemente auf eine neue Zeile */
    justify-content: center; /* Zentrieren Sie die Elemente horizontal */
}

.projekt_news_images {
    max-width: calc(50% - 20px); /* Setzen Sie die maximale Breite für die Bilder auf 50% minus den Rand */
    max-height: 300px; /* Maximale Bildhöhe auf 300px begrenzen */
    width: 300px;
    margin: 15px;
    object-fit: cover;
    margin-bottom: 40px;
}

.projekt_news_images_singel {
    max-width: calc(50% - 20px); /* Setzen Sie die maximale Breite für die Bilder auf 50% minus den Rand */
    max-height: 450px; /* Maximale Bildhöhe auf 300px begrenzen */
    width: 700px;
    margin: 15px;
}

/* Media Query für kleinere Bildschirme */
@media (max-width: 600px) {
    .projekt_news_images {
        max-width: calc(100% - 20px); /* Bei kleineren Bildschirmen die maximale Breite auf 100% setzen */
    }

    .projekt_news_images_singel {
        max-width: calc(100% - 20px);
    }
}

.downloads {
    text-decoration: none;
    width: 100%;
    z-index: 10;
}



button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%;
    z-index: 10000;
}

button:hover {
    background-color: #45a049;
}



@media (min-width: 600px) {
    button {
        font-size: 1.1em;
    }
}

@media (min-width: 768px) {
    button {
        font-size: 1.2em;
    }
}


.content {
    display: flex;
    flex-direction: column; /* Boxen untereinander */
    align-items: center;    /* Zentrierung horizontal */
    gap: 20px;              /* Abstand zwischen den Boxen */
    padding: 20px;     /* Mindestens Höhe der Seite */
    justify-content: center; /* Zentrierung vertikal */
 /* Optionaler Hintergrund */
}

.content-box {
    width: 90%;
    max-width: 800px;       /* Maximale Breite */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.content-box:hover {
    transform: translateY(-5px); /* Animation beim Hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

  
  /* Titel */
  .content-box h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #444;
  }

  h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  @media (max-width: 768px) {
    .container {
        padding: 10px;
        width: 90%;
    }

    .content-box {
        width: 100%;
        padding: 15px;
    }

    .content-box h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .content-box h2 {
        font-size: 1rem;
    }
    
    .content-box {
        padding: 10px;
    }
}