body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

.marquee-gallery {
  width: 100%;
  overflow: hidden;
  height: 400px;
}

.marquee-gallery img {
  margin-right: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height:500px;
}

.marquee-gallery img:hover {
  transform: translateY(-5px);
}