body {
  padding: 0%;
  width: 100%;
  background-color: rgb(234, 221, 202);
  margin: 0;
  overflow-x: hidden;
  font-family: "Shadows Into Light", 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";
}

#menu {
  display: none;
}

a {
  display: block;
  color: rgb(111, 78, 55);
  font-size: 25px;
  display: inline-block;
  width: 150px;
  text-align: right;
  text-decoration: none;
}

.search {
  background-color: rgb(234, 221, 202);
  border: 2px solid rgb(111, 78, 55);
  height: 40px;
  width: 300px;
  text-align: left;
  border-radius: 30px;
}

h1 {
  text-align: center;
  color: rgb(234, 221, 202);
}

a:hover {
  font-size: 30px;
}

div {
  display: inline-flex;
  margin-left: 300px;
}
div article {
  margin-top: 100px;
  width: 500px;
}
div article .i {
  font-size: 60px;
  color: rgb(111, 78, 55);
}
div article p {
  font-size: 20px;
  color: rgb(111, 78, 55);
}
div img {
  margin-top: 140px;
  width: 500px;
}

#q {
  display: inline-flex;
  background-color: rgb(111, 78, 55);
  margin: 0px;
  width: 100%;
  height: 600px;
  margin-top: 100px;
}
#q .w {
  margin-left: 80px;
}
#q .w .e {
  margin: 0px;
  border-color: solid black;
  background-color: rgb(234, 221, 202);
  width: 400px;
  height: 515px;
  margin-top: 50px;
  text-align: center;
}
#q .w .e img {
  width: 400px;
  height: 400px;
  margin: 0px;
}
#q .w .e p {
  color: rgb(111, 78, 55);
}

nav {
  display: inline-flex;
}
nav img {
  width: 600px;
  margin-top: 50px;
  margin-left: 150px;
}
nav article {
  margin-top: 100px;
  width: 500px;
  margin-left: 100px;
}
nav article .i {
  font-size: 60px;
  color: rgb(111, 78, 55);
}
nav article p {
  font-size: 20px;
  color: rgb(111, 78, 55);
}

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 img {
  width: 50px;
  margin-top: 50px;
}

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