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;
}

div {
  margin: 0;
  padding-top: 70px;
  justify-items: center;
  text-align: center;
}
div h4 {
  margin-top: 30px;
  color: rgb(111, 78, 55);
  margin-bottom: 0px;
}
div h1 {
  color: rgb(111, 78, 55);
}
div div {
  display: inline-flex;
}
div div article p {
  color: rgb(111, 78, 55);
  font-size: 20px;
  text-align: justify;
}

@media (max-width: 768px) {
  header {
    display: flex;
    height: auto;
    gap: 10px;
    justify-content: flex-start;
  }
  header a {
    display: none;
  }
  header #menu {
    display: inline-block;
  }
  div {
    padding-top: 80px;
    flex-direction: column;
  }
  div article {
    margin: 50px;
  }
}/*# sourceMappingURL=styles.css.map */