.collage-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 4rem;
}

.collage-images img:nth-of-type(1) {
    grid-column-start: 2;
}


.collage-images img:nth-of-type(2) {
    grid-column-start: 5;
    grid-row-start: 2;
}

.collage-images img:nth-of-type(3) {
    grid-column-start: 4;
    grid-row-start: 3;
}


.collage-images img:nth-of-type(4) {
    grid-column-start: 1;
    grid-row-start: 2;
}


.collage-inner h2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 100rem;
    margin: 0;
    z-index: 1;
}


/* Desktop small */
@media only screen and (max-width: 1000px) {
    .collage-images {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    
    .collage-images img:nth-of-type(2) {
        grid-column-start: 4;
        grid-row-start: 2;
    }
    .collage-images img:nth-of-type(3) {
        grid-column-start: 3;
        grid-row-start: 3;
    }

}

/* Tablet */
@media only screen and (max-width: 700px) {
  
}


/* Iphone */
@media only screen and (max-width: 450px) {
  
}