body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  font-family: 'Segoe UI', sans-serif;
  color: white;
  text-align: center;
}

.container {
  padding: 3rem 1rem;
}

.animation {
  font-size: 4rem;
  animation: bounce 2s infinite;
  margin-bottom: 1rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.2rem;
  color: #e0e0e0;
}

.gallery {
  margin-top: 2rem;
}

.gallery h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.images img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.images img:hover {
  transform: scale(1.05);
}

footer {
  margin-top: 2rem;
  color: #ccc;
  font-size: 0.9rem;
}

