@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: linear-gradient(135deg, #b3e5fc, #f8bbd0);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-align: center;
  animation: fadeIn 2s ease;
  overflow: hidden;
}

h1 {
  font-size: 3em;
  color: #ff80ab;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 10px;
}

.poem {
  font-size: 1.3em;
  max-width: 600px;
  line-height: 1.7em;
  background: rgba(255,255,255,0.2);
  padding: 15px 20px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
  animation: float 4s ease-in-out infinite alternate;
}

.heart {
  font-size: 2em;
  color: #ff4081;
  margin-top: 20px;
  animation: pulse 1.5s infinite;
}

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

@keyframes float {
  from {transform: translateY(0);}
  to {transform: translateY(-10px);}
}

@keyframes pulse {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
}

/* Yağmur damlası efekti */
.rain-drop {
  position: absolute;
  width: 2px;
  height: 15px;
  background: rgba(255,255,255,0.8);
  bottom: 100%;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
    opacity: 0;
  }
}