styles.css
body {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  background: #f7f2ea;
  color: #3b3b3b;
  text-align: center;
}

header {
  padding: 4rem 1rem 2rem;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  margin-bottom: 0.5rem;
  color: #b08968;
}

.subtitle {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

section {
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 1rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #7a8f73;
}

.placeholder {
  font-style: italic;
  opacity: 0.7;
}

form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  font-family: inherit;
}

textarea {
  min-height: 100px;
}

button {
  background: #7a8f73;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

button:hover {
  background: #5f745a;
}

footer {
  margin: 3rem 0 2rem;
  font-size: 0.9rem;
}
header,
footer,
section {
  text-align: center;
}
