/* Reset default margin/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full-screen center */
body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7b7b, #ffb86c);
  font-family: 'Poppins', sans-serif;
  color: white;
}

/* Main content box */
.container {
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

/* Image style */
.flower {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  animation: spin 10s linear infinite;
}

/* Text styles */
h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

p {
  margin-top: 10px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Simple animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
