/*-------------------
This theme uses Bootstrap v5.1.

It is highly recommended to check out Bootstrap's guiding principles,
strategies, and techniques at https://getbootstrap.com/docs/5.1/extend/approach/
before adding custom styling.

To learn more about Bootstrap v5.1, please check
out https://getbootstrap.com/docs/5.1/getting-started/introduction/.
/*-------------------*/

/*-------------------*/
/* GENERAL */
/*-------------------*/

/*-------------------*/
/* TOP NAV */
/*-------------------*/

/*-------------------*/
/* HEADER */
/*-------------------*/

/*-------------------*/
/* CATEGORY NAV */
/*-------------------*/

/*-------------------*/
/* CONTENT */
/*-------------------*/
h1 {
  text-align: center;
}
.categoryboxes {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
.categorybox {
  background: #4AD000;
  width: 350px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 20px;
  transition: 0.2s ease-in;
  border: 12px solid #09450D;
  border-radius: 50px;
  cursor: pointer;
}
.categorybox:hover {
  background: #09450D;
  border: 12px solid #4AD000;
}
.categorybox a {
  color: #212530;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.categorybox:hover a {
  color: #fff;
}

/*-------------------*/
/* PRODUCT THUMBS */
/*-------------------*/

/*-------------------*/
/* PRODUCT */
/*-------------------*/

/*-------------------*/
/* CART/CHECKOUT */
/*-------------------*/

/*-------------------*/
/* FOOTER */
/*-------------------*/


/*-------------------*/
/* MEDIA QUERIES */
/*-------------------*/
@media screen and (min-width: 661px){

}

@media screen and (max-width: 1200px){

}

@media screen and (max-width: 660px){

}

@media screen and (max-width: 340px){

}