body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #FFD700, #FFF7E6);
  color: #333;
  text-align: center;
  position: relative;
  min-height: 100vh;
}

header {
  background-color: #FFD700;
  color: #B8860B;
  padding: 20px 0;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 2px 2px rgba(255, 255, 255, 0.5);
}

main {
  padding: 30px;
}

.content {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.content h2 {
  color: #B8860B;
  margin-bottom: 10px;
}

.content p {
  line-height: 1.6;
  font-size: 1.2em;
}

footer {
  margin-top: 30px;
  padding: 10px 0;
  background-color: #B8860B;
  color: white;
  font-size: 0.9em;
  position: relative;
}

/* Sunflower decorations */
.sunflower-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: -1;
  overflow: hidden;
}

.sunflower-stem {
  position: absolute;
  bottom: -20px;
  height: 180px;
  object-fit: contain;
}

.sunflower-stem:nth-child(1) { left: 5%; }
.sunflower-stem:nth-child(2) { left: 25%; }
.sunflower-stem:nth-child(3) { left: 45%; }
.sunflower-stem:nth-child(4) { left: 65%; }
.sunflower-stem:nth-child(5) { left: 85%; }

.sunflower-float {
  position: absolute;
  bottom: 40px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
}

.sunflower-float:nth-child(6) { left: 15%; animation-delay: -0.5s; }
.sunflower-float:nth-child(7) { left: 35%; animation-delay: -1.5s; }
.sunflower-float:nth-child(8) { left: 55%; animation-delay: -1s; }
.sunflower-float:nth-child(9) { left: 75%; animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
} 