* {
  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 {
  display: flex;
  flex-wrap: wrap; 
  gap: 48px 24px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  max-width: 1128px; 
  justify-content: center; 
  margin-top: 100px;
  margin-bottom: 100px;
 
}

.gallery-item {
  flex: 0 0 calc((100% - 40px) / 4); 
}

.gallery-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
}

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