body {
  grid-template-rows: 23vh 20vh 1fr;
  grid-template-columns: 12vw;
}

#searchButtonHolder {
  display: grid;
  justify-self: center;
  grid-column: 1/4;
  grid-row: 2;
  grid-template-rows: 60px;
  grid-template-columns: 50vw 60px;
  z-index: 2;
}

#searchInputLabel {
  grid-row: 2;
  display: block !important;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font: normal normal 600 23px/30px "Segoe UI", "Roboto";
  color: #FFFFFF;
}

.categoryMenu {
  display: grid;
  grid-template-rows: 1fr 8fr;
  grid-template-columns: repeat(4, minmax(350px, 1fr));
  position: fixed;
  left: 0;
  bottom: 0;
  overflow-y: hidden;
  overflow-x: scroll;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.6980392157);
  transition: 1.35s;
}
.categoryMenu #closeMenuCategory {
  position: fixed;
  right: 0;
  width: 40px;
  margin: 30px 50px 0 0;
  transition: transform 0.1s;
}
.categoryMenu .categoryBox {
  display: grid;
  place-self: center;
  justify-items: center;
  grid-row: 2;
  grid-template-rows: 15% 65% 20%;
  height: 80%;
  width: 300px;
  background: rgba(255, 255, 255, 0.862745098);
  border: 5px solid #707070;
  border-radius: 28px;
}
.categoryMenu .categoryBox .title {
  margin: 0;
  font: bold 35px/76px "Segoe UI", "Roboto";
  color: #707070;
}
.categoryMenu .categoryBox .desc {
  margin: 0;
  font: 25px/28px "Segoe UI", "Roboto";
  color: #707070;
  text-align: center;
  margin: 0 10px;
}
.categoryMenu .categoryBox .categoryButton {
  border: 4px solid #707070;
  border-radius: 15px;
  width: 210px;
  height: 60%;
  min-height: 50px;
  transition: transform 0.1s;
  font: 35px "Segoe UI", "Roboto";
  padding-top: 0px;
  color: #707070;
}

@media screen and (max-width: 700px) {
  #websiteName {
    display: block;
  }

  #searchButtonHolder {
    grid-template-columns: 70vw 60px;
  }
}/*# sourceMappingURL=home.css.map */