
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffaf0;
  color: #333;
}
header {
  background-color: #c0392b;
  padding: 1rem;
  text-align: center;
  color: white;
}
.hero {
  background: #8e44ad;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px #000;
}
.hero h2 {
  font-size: 2rem;
  background-color: rgba(0,0,0,0.5);
  padding: 1rem;
  border-radius: 8px;
}
.section {
  padding: 2rem;
  text-align: center;
}
.section img {
  width: 100%;
  max-width: 700px;
  margin: 1rem 0;
}
footer {
  background-color: #c0392b;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
