body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background: #fff0f5;
  color: #333;
}

.container {
  max-width: 700px;
  margin: auto;
  padding: 20px;
  background: #ffe4f5;
  border: 4px dashed #f8b7d8;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.4);
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  font-size: 2.5em;
  color: #d86fa5;
}

header p {
  font-size: 1.2em;
  color: #a06293;
}

nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

nav a {
  text-decoration: none;
  background: #ffcce0;
  padding: 10px 15px;
  border-radius: 10px;
  color: #913b7d;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav a:hover {
  background: #ffb3d1;
  transform: scale(1.1);
}

main h2 {
  color: #c94f94;
}

ul {
  list-style: "🌷 ";
  padding-left: 20px;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #aa6c90;
}
