body {
    background-color: #ffffff;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.gallery {
    padding: 24px 156px;

    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

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

.gallery-image {
    height: 100%;

    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: zoom-in;
}

.gallery-image:hover {
    transform: scale(1.05);
}
