body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #3f51b5, #673ab7);
  color: white;
  text-align: center;
  padding: 2rem;
}

.floating-icons {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.float {
  position: absolute;
  animation: floatUp 10s infinite linear;
}
.poem {
  font-style: italic;
  color: #e0e0ff;
  margin-top: 2rem;
}

@keyframes floatUp {
  0% { transform: translateY(100vh); }
  100% { transform: translateY(-100vh); }
}

