body {
  background: linear-gradient(to bottom, #a8e063, #56ab2f);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
  margin: 0;
}
.container {
  position: relative;
  width: 300px;
  height: 350px;
}
.pot {
  position: absolute;
  bottom: 60px; 
  left: 50%;
  transform: translateX(-50%) ;
  width: 140px;
  z-index: 1;
  
}
.flower {
  position: absolute;
  bottom: 83px; 
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: bottom center;
  width: 80px;
  z-index: 2;
  animation: growFlower 2s ease-out 2s forwards;
}

@keyframes growFlower {
  to {
    transform: translateX(-50%) scaleY(1);
  }
}
.drop {
  position: absolute;
  width: 12px;
  height: 18px;
  background: linear-gradient(to bottom, #00bfff 0%, #007acc 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(10deg);
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
  opacity: 0;
  z-index: 3;
  animation: drop 1.5s ease-in forwards;
}
.drop1 {
  left: 148px;
  top: 0;
  animation-delay: 0.5s;
}

.drop2 {
  left: 160px;
  top: 0;
  animation-delay: 1.2s;
}
@keyframes drop {
  0% {
    top: 0;
    opacity: 0;
    transform: scale(0.8);
  }
  20% {
    opacity: 1;
  }
  70% {
    top: 160px;
    transform: scale(1);
  }
  100% {
    top: 180px;
    opacity: 0;
    transform: scale(0.9);
  }
}
.text {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 24px;
  color: #003366;
  opacity: 0;
  animation: fadeInText 2s ease-out 4s forwards;
  z-index: 4;
}

.text span {
  color: green;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}
.fade-out {
  opacity: 0;
  transition: opacity 2s ease-out;
}
.page-content {
  transition: opacity 2s ease-out;
}
