/* style.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fffaf0;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header, footer {
  background: #ff6b6b;
  color: white;
  text-align: center;
  padding: 1rem;
}
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero {
  text-align: center;
}
.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}
.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
}
