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

div {
  display: flex;
  padding-top: 200px;
  flex-wrap: wrap;
  justify-content: center;
}
div div {
  margin: 15px;
  width: 460px;
  background-color: rgb(111, 78, 55);
  padding: 5px;
  border-radius: 10px;
  display: block;
  text-align: center;
}
div div p {
  font-weight: bold;
  color: rgb(234, 221, 202);
  text-align: center;
}
div div h4 {
  color: rgb(234, 221, 202);
}
div div span {
  color: rgb(234, 221, 202);
}
div div img {
  width: 100%;
}

@media (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;
  }
  h1 {
    font-size: 28px;
  }
  div {
    margin-left: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  div article {
    width: 100%;
    margin-top: 20px;
  }
  div article .i {
    font-size: 50px;
  }
  div article p {
    font-size: 30px;
  }
  div img {
    width: 100%;
    margin-top: 20px;
  }
}/*# sourceMappingURL=styles.css.map */