body {
  margin: 0;
  height: 100vh;
  
}

.bunny {
  position: fixed;
  bottom: 60px; 
  right: 40px;   
  width: 250px;  
  opacity: 0;
  transform: translateY(20px);
  filter: drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.5));
  animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
