.photo-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-grid img{
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    max-width: 500px;
    margin: 1vw;
    border: 2px solid #090c13;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid img:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}