body {
  padding: 0%;
  width: 100%;
  background-color: rgb(234, 221, 202);
  margin: 0;
  overflow-x: hidden;
  font-family: "Lobster", cursive;
}

header {
  width: 100%;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  height: 70px;
  background-color: rgb(234, 221, 202);
  border-bottom: 4px solid rgb(111, 78, 55);
  align-items: center;
  font-family: "Spicy Rice";
  margin: 0px;
  padding: 0;
}
header a {
  display: block;
  color: rgb(111, 78, 55);
  font-size: 25px;
  display: inline-block;
  width: 150px;
  text-align: right;
  text-decoration: none;
}
header a:hover {
  font-size: 30px;
}
header .search {
  background-color: rgb(234, 221, 202);
  border: 2px solid rgb(111, 78, 55);
  height: 40px;
  width: 300px;
  text-align: left;
  border-radius: 30px;
}
header #menu {
  display: none;
}

form {
  width: 100%;
  padding-top: 200px;
  display: flex;
  margin-left: 50px;
  margin-right: 0px;
}
form div {
  width: 50%;
}
form div article {
  display: flex;
}
form div article p {
  color: rgb(111, 78, 55);
  font-size: 30px;
}
form div {
  width: 50%;
  margin-right: 70px;
}
form div textarea {
  border: 2px, solid rgb(111, 78, 55);
  height: 150px;
  width: 700px;
  margin-right: 20px;
  background-color: rgb(234, 221, 202);
}
form div input {
  border: 2px, solid rgb(111, 78, 55);
  width: 700px;
  height: 50px;
  display: flex;
  margin-top: 5px;
  flex-direction: column;
  background-color: rgb(234, 221, 202);
}
form div #send {
  background-color: rgb(111, 78, 55);
  font-weight: 700px;
  border: none;
  color: rgb(234, 221, 202);
  width: 50px;
}

@media (max-width: 780px) {
  header {
    display: flex;
    height: auto;
    gap: 10px;
    justify-content: flex-start;
  }
  header a {
    display: none;
  }
  header #menu {
    display: inline-block;
  }
  .search {
    display: none;
  }
  h1 {
    font-size: 28px;
  }
  form {
    width: 400px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    margin-left: 12px;
  }
  form div {
    width: 500px;
    margin-bottom: 50px;
  }
  form div article {
    display: flex;
    width: 400px;
  }
  form div article p {
    color: rgb(111, 78, 55);
    font-size: 20px;
  }
  form div {
    width: 300px;
  }
  form div textarea {
    border: 2px, solid rgb(111, 78, 55);
    height: 100px;
    width: 400px;
    background-color: rgb(234, 221, 202);
  }
  form div input {
    border: 2px, solid rgb(111, 78, 55);
    width: 400px;
    height: 50px;
    display: flex;
    margin-top: 5px;
    flex-direction: column;
    background-color: rgb(234, 221, 202);
  }
  form div #send {
    background-color: rgb(111, 78, 55);
    font-weight: 700px;
    border: none;
    color: rgb(234, 221, 202);
    width: 50px;
  }
}/*# sourceMappingURL=styles.css.map */