.Projekte-Line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 80px;
    grid-row-gap: 10px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 30px;
    text-align: center;
}

.Projekte_1 {
    grid-area: 1 / 1 / 2 / 2;
}

.Projekte_2 {
    grid-area: 1 / 2 / 2 / 3;
}

.Projekte_3 {
    grid-area: 1 / 3 / 2 / 4;
}


.Projekte-Img{
    width: 100%;
    aspect-ratio: 2;
    object-fit: cover;
}

.Projekte-Line label{
    color: var(--black);
    font-size: 25px;
    font-weight: 100;
    margin: 20px;
    width: 100%;
}

@media only screen and (max-width: 1500px) and (min-width:800px) {

    /*Space & Main Logo*/
    .Projekte-Line {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 80px;
        grid-row-gap: 10px;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 30px;
        text-align: center;
    }
    
    .Projekte_1 {
        grid-area: 1 / 1 / 2 / 2;
    }
    
    .Projekte_2 {
        grid-area: 1 / 2 / 2 / 3;
    }
    
    .Projekte_3 {
        grid-area: 2 / 1 / 3 / 2;
    }
    

}

@media only screen and (max-width: 800px) {

    /*Space & Main Logo*/
    .Projekte-Line {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 80px;
        grid-row-gap: 10px;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 30px;
        text-align: center;
    }

    .Projekte-Line label{
        padding-left: 0px;
        margin-left: 0px;
    }
    
    .Projekte_1 {
        grid-area: 1 / 1 / 2 / 2;
    }
    
    .Projekte_2 {
        grid-area: 2 / 1 / 3 / 2;
    }
    
    .Projekte_3 {
        grid-area: 3 / 1 / 4 / 2; 
    }
    
}