



@media screen and (max-width: 799px){
    .product-grid {
       
        display: grid;
        grid-auto-columns: 1fr;
        grid-auto-rows:  92vw 16vw 270vw   60vw   80vw 60vw 60vw 80vw 48vw  ;
        grid-template-areas:
 
        'b'
        '.'
        'a'

        'e'    
        'f'
        'g'
        'h' 
        'i'
        'j'
        
        ;
    
        grid-gap: 2px;
    }
    
    
    
    
    /* Einzelne Projekte unter Projects */
    
.stacked:nth-child(1) {
    grid-area: a;
}

.stacked:nth-child(2) {
    grid-area: b;
}






.stacked:nth-child(3) {
    grid-area: e;
}

.stacked:nth-child(4) {
    grid-area: f;
}

.stacked:nth-child(5) {
    grid-area: g;
}

.stacked:nth-child(6) {
    grid-area: h;
}

.stacked:nth-child(7) {
    grid-area: i;
}

.stacked:nth-child(8) {
    grid-area: j;
}

}
    


@media screen and (min-width: 800px) {
.product-grid {
   
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 22vh;
    grid-template-areas:
    '. . . a a a a a a'
    '. . . a a a a a a'
    'b b . a a a a a a'
    'b b . . . . . . .'
    'e e e e e e e e e'
    'e e e e e e e e e'
    'e e e e e e e e e'
    'e e e e e e e e e'
    'e e e e e e e e e'
    'h h h h h h g g g'
    'h h h h h h g g g'
    'h h h h h h j j j'
    'f f f f f f f f f'
    'f f f f f f f f f'
    'f f f f f f f f f'
    'i i i i i i i i i'
    'i i i i i i i i i'
    'i i i i i i i i i'
    'i i i i i i i i i'
    'i i i i i i i i i'
    
  
   

    
    ;

    grid-gap: 4px;
}




/* Einzelne Projekte unter Projects */


.stacked:nth-child(1) {
    grid-area: a;
}

.stacked:nth-child(2) {
    grid-area: b;
}






.stacked:nth-child(3) {
    grid-area: e;
}

.stacked:nth-child(4) {
    grid-area: f;
}

.stacked:nth-child(5) {
    grid-area: g;
}

.stacked:nth-child(6) {
    grid-area: h;
}

.stacked:nth-child(7) {
    grid-area: i;
}

.stacked:nth-child(8) {
    grid-area: j;
}






}