body {
  background-color: rgb(214, 255, 208);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

main {
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
  margin-top: 80px;
}

form {
  max-width: 600px;
  /* margin: 0 auto; */
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
  font-family: Arial, sans-serif;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 20px;
  font-size: 16px;
}

input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

.error {
  color: red;
  margin-bottom: 20px;
}

header {
  background-color: #b5e6b7;
  padding: 1rem;
  min-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

nav li {
  margin: 0 1rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

section#contact ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

section#contact ul li {
  margin: 10px 0;
  font-size: 18px;
  color: #333;
  text-align: center;
}

section#contact ul li:first-child {
  margin-top: 0;
}

section#contact ul li:last-child {
  margin-bottom: 0;
}

#features {
  background-color: #f4f4f4;
  padding: 50px;
}

#features h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

#features p {
  font-size: 20px;
  margin-bottom: 30px;
}

#features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#features li {
  margin: 20px;
  padding: 20px;
  background-color: white;
  border: 1px solid #e4e4e4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#features li h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

#features li p {
  font-size: 18px;
}

.image-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.image-list li {
  margin: 10px;
  text-align: center;
}

.image-list img {
  width: 200px;
  height: auto;
}

.image-list h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}