.photo-grid{
    margin-top: 5rem;
    margin-left: 5rem;
    margin-right: 5rem;
    position: relative;
}

.photos{
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}

.photos img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.recent-work-container {

    width: 100%;
    display: flex;
    justify-content: center;
}
.recent-work {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.5em;
}
.recent-work-name {
    font-size: 1.8em;
}

@media (min-width: 1300px) {
    
    .photos {
        grid-template-columns: repeat(3,1fr);
    }

    .grid-row-span-2 {

        grid-row: span 2;
    
    }

    .recent-work {
        font-size: 2rem;
    }
}