* {
  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;
}

img {
  display: block;
}

.gallery{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
list-style: none;
padding: 30px;}

 .gallery-item {
  display: block;
  flex: 1 1 calc(33.333% - 20px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
 }

 .gallery-item img {
   width: 100%;
   height: 100%;
   object-fit:cover;
 }

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