* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: sans-serif;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 24px;
    list-style: none;
    margin: 0 auto;
    max-width: 1200px;
}
.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
}
.gallery-image:hover {
    transform: scale(1.03);
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}