* {
    box-sizing: border-box;
}
body{
    background-color:azure;
}
a {
    text-decoration: none;
    font-style: normal;
}
ul {
    list-style-type: none;
    padding: 0;
}

.gallery {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 156px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 24px;
}

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

.gallery-image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    scale: 1;
    transition: scale 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image:hover{
    scale: 1.1;
}