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

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

main {
  margin: 0;
  padding-top: 70px;
}
main h2 {
  color: rgb(111, 78, 55);
  text-align: center;
  font-size: 50px;
  margin-top: 40px;
}
main div {
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
main div div {
  margin: 15px;
  max-width: 300px;
  min-width: 230px;
  background-color: rgb(111, 78, 55);
  padding: 5px;
  border-radius: 10px;
  display: block;
  text-align: center;
}
main div div p {
  font-weight: bold;
  color: rgb(234, 221, 202);
  text-align: center;
}
main div div h4 {
  color: rgb(234, 221, 202);
}
main div div span {
  color: rgb(234, 221, 202);
}
main div div img {
  width: 100%;
}

footer {
  background-color: rgb(111, 78, 55);
  color: rgb(234, 221, 202);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
footer article {
  margin-left: 200px;
}
footer article p {
  color: rgb(234, 221, 202) !important;
}
footer article a {
  color: rgb(234, 221, 202);
}

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