.gallery-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 8%;
}

.gallery {
  width: 100%;
  columns: 500px;
}

.gallery img {
  width: 100%;
  margin-bottom: 1em;
  border-radius: 25px;
  transition: transform 0.5s ease-in-out;
}

.gallery img:hover {
  transform: translateY(-10px);
}
