body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #ffd6ec, #ffeaf5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

@keyframes floatHearts {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.container {
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
  z-index: 2;
}

h1 {
  color: #ef7396;
  font-size: 28px;
  margin-bottom: 50px;
  animation: pulse 2s infinite;
}
h2 {
    font-size: 15px;
  color: #ef7396;
    
}rgb (255, 255, 255)
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.gallery {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.item {
  width: 200px;
  height: 230px;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s forwards;
}

.item:nth-child(1) { animation-delay: 0.3s; }
.item:nth-child(2) { animation-delay: 0.6s; }
.item:nth-child(3) { animation-delay: 0.9s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.item span {
  display: block;
  padding: 10px;
  background: white;
  color: #ff4d88;
  font-weight: bold;
}

.item:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(255, 20, 147, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
