body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #fff8f0;
  color: #333;
}
header {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffcc99;
}
header h1 {
  margin: 0;
  font-size: 2em;
}
.recipes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}
.recipes article {
  margin: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  background: #fff;
}
.recipes img {
  width: 100%;
  height: auto;
}
.recipes h2 {
  margin: 10px;
  font-size: 1.2em;
}
.recipes p {
  margin: 10px;
}
.cta {
  text-align: center;
  padding: 40px 20px;
  background: #ffe0b3;
}
.cta .button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff9966;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
footer {
  text-align: center;
  padding: 20px;
  background: #ffcc99;
}