* {
    box-sizing: border-box;
}

body {
    margin: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fafafa;
    color: #212121;
    line-height: 1.5;
}

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

.gallery li {
    flex: 0 1 auto;
}

.gallery img {
    display: block;
    width: 360px;
    height: 199px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}


.gallery img:hover {
    transform: scale(1.05);

}