
body {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(to bottom, #fefaf4 0%, #f5f1ea 100%);
  color: #333;
  margin: 0;
  padding: 0;
}
header {
  background: url('https://images.unsplash.com/photo-1541971875077-57b6b9f7580b') no-repeat center center/cover;
  height: 100vh;
  text-align: center;
  color: white;
  padding-top: 100px;
}
nav {
  background-color: #fff6ec;
  padding: 1rem;
  text-align: center;
}
nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #6b4c3b;
}
section {
  padding: 2rem;
}
form input, form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}
form button {
  background-color: #6b4c3b;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
}
