body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  justify-content: center;
}

.masonry {
  margin-top: -10px;
  column-count: 4;
  column-gap: 5px;
}

.masonry .item {
  margin-bottom: 10px;
  break-inside: avoid;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.masonry .item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive for mobile view */

@media (max-width: 768px) {
  .masonry {
    column-count: 2;
  }
}

