/* Reset some default margin/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Style for the gallery container */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px;
}

/* Style for each individual image */
.image {
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.image img {
  width: 300px; /* Adjust as needed */
  height: 300px; /* Adjust as needed */
  object-fit: cover;
}
