body {
  font-family: "Helvetica", "Arial", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fce8e6;
  color: #333;
}

header {
  background: #E53F72;
  color: white;
  padding: 2rem;
  text-align: center;
}

section {
  padding: 1.5rem;
  margin: 1rem;
  background: white;
  border-radius: 8px;
}

h1, h2 {
  margin-bottom: 0.5rem;
}

ul, ol {
  padding-left: 1.2rem;
}

footer {
  background: #7187BC;
  color: white;
  padding: 1rem;
  text-align: center;
}

@media screen and (max-width: 600px) {
  header, section, footer {
    padding: 1rem;
    margin: 0.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }
}