body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #faeed1;
}

header,
nav,
main {
  padding: 20px;
  background-color: #faeed1;
  color: black;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-size: large;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #000000;
}

footer {
  text-align: center;
  position: relative;
  bottom: 0;
  height: 70px;
  background-color: #ded0b6;
}

footer > p {
  font-size: x-large;
}

.made {
  background-color: #ded0b6;
  font-size: 15px;
}
section {
  background-color: #fff;
  color: #000000;
  width: 1200px;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form {
  margin-bottom: 20px;
}

label {
  color: black;
}

input[type="text"],
button[type="submit"] {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}

button[type="submit"] {
  background-color: #333;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #555;
}

ul {
  list-style-type: none;
  padding: 0;
  color: black;
}

li {
  margin-bottom: 5px;
}
