html,
body {
  margin: 0;
  padding: 0;
  font-size: 12px;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

main {
  min-height: 100vh;
  flex-direction: column;
}

section {
  display: flex;
  padding: 2%;
  box-sizing: border-box;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
section:nth-of-type(1) {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
section:nth-of-type(1) .row {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section:nth-of-type(1) .row form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
}
section:nth-of-type(1) .row form input[type=search] {
  padding: 1%;
  box-sizing: border-box;
}
section:nth-of-type(2) {
  flex-direction: column;
  justify-content: center;
}
section:nth-of-type(2) .products_grid {
  display: grid;
  width: 80%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
}
section:nth-of-type(2) .products_grid .item {
  width: 100%;
  background-color: rgb(34, 9, 1);
  color: rgb(255, 255, 255);
  padding: 5%;
  box-sizing: border-box;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1em;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
section:nth-of-type(2) .products_grid .item img {
  width: 100%;
}
section:nth-of-type(2) .products_grid .item:hover {
  background-color: rgb(139, 26, 26);
}
section:nth-of-type(2) .error {
  font-size: 1.5em;
  color: rgb(186, 39, 74);
}

#product_desc {
  display: flex;
  flex-direction: column;
}
#product_desc .item {
  width: 100%;
  background-color: rgb(34, 9, 1);
  color: rgb(255, 255, 255);
  padding: 5%;
  box-sizing: border-box;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1em;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
#product_desc .item img {
  width: 100%;
  max-width: 500px;
}

.error {
  font-family: "Rubik", sans-serif;
  font-size: 1.2em;
  padding: 2em;
  box-sizing: border-box;
  text-transform: uppercase;
  color: rgb(139, 26, 26);
}/*# sourceMappingURL=products.css.map */