@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Quicksand', sans-serif;
  background-color: #f9f4ef;
  color: #4b3f2f;
  line-height: 1.6;
}

nav {
  background-color: #d8b99c;
  padding: 15px;
  text-align: center;
}

nav a {
  margin: 0 10px;
  color: #4b3f2f;
  font-weight: 600;
  text-decoration: none;
}

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

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 400px 20px;
  box-sizing: border-box;
}

h1,
h2,
h3 {
  color: #5b4636;
  margin-top: 0;
  text-align: center;
}

form {
  background: #fff8f0;
  border: 1px solid #d3c0ae;
  padding: 20px;
  margin: 20px 0;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  width: 100%;
  text-align: left;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

form input,
form textarea,
form button {
  display: block;
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  font-family: inherit;
  border: 1px solid #bca98e;
  border-radius: 4px;
}

form textarea {
  height: 150px;
}

button {
  background-color: #b98962;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

button:hover {
  background-color: #a36d4a;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
  text-align: center;
}

footer {
  background-color: #d8b99c;
  text-align: center;
  padding: 10px;
  color: #4b3f2f;
}
