body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #d9fdd3; /* hijau muda */
  text-align: center;
  padding: 40px;
}

.header h1 {
  color: #2e7d32;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.1em;
  color: #333;
}

.cute-image {
  width: 250px;
  border-radius: 20px;
  margin-top: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.menu-container {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.menu-button {
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s, transform 0.2s;
}

.menu-button:hover {
  background-color: #388e3c;
  transform: scale(1.05);
}

footer {
  margin-top: 60px;
  background-color: #2e7d32;
  color: white;
  padding: 20px;
  border-top: 4px solid #1b5e20;
}