.background-container {
    background-image: url('/Bilder/04_Projekte/01_Projekte.jpg');
    background-size: cover;          /* Füllt die Breite */
    background-position: center 30%;     /* Zentriert das Bild */
    background-repeat: no-repeat;
    
    width: 98%;
    aspect-ratio: 3 / 2;            /* Passt genau zu deinem Bild 4000:2667 */
    max-height: 75vh;               /* Begrenzt die Höhe */
    
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    margin-left: 1rem;
    align-items: flex-end;
    justify-content: flex-start;
}

.title {
    text-align: left;
    font-size: 4rem;
    font-weight: bold;
    color: #FF914D; /* optional – falls der Hintergrund dunkel ist */
    margin-bottom: 20px;
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 0, 0, 0.3); 
}

