body {
  font-family: 'Georgia', serif;
  background-color: #fff8f2;
  color: #3a2f2f;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 20px;
  background: #fff1e6;
  border-bottom: 1px solid #e0d3c5;
}

header h1 {
  font-size: 2.5em;
  letter-spacing: 1px;
  margin: 0;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #3a2f2f;
  font-weight: bold;
  font-size: 1em;
}

nav a:hover {
  text-decoration: underline;
}

.intro {
  text-align: center;
  padding: 40px;
}

.products {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}

.product {
  text-align: center;
  max-width: 300px;
}

.product img {
  width: 100%;
  border-radius: 10px;
}

button {
  background-color: #c8b6a6;
  color: white;
  padding: 10px 15px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #fff1e6;
  font-size: 0.9em;
}
