body {
    margin: 0 15px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.gallery-item {
    width: calc((100% - 48px) / 3);
    max-width: 360px;  
}

.gallery-image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}