html,
body {
  margin: 0;
  padding: 0px;
  font-family: Poppins;
}
.section-container {
  margin: 0 auto;
  max-width: 1630px;
}
/*section CSS*/
h1 {
  font-size: 34px;
  text-align: center;
  font-weight: bolder;
  padding-top: 50px;
}

h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

h4 {
  font-size: 19px;
  text-align: left;
  font-weight: bold;
  margin: 0;
}

section {
  margin: 0;
  padding-bottom: 50px;
}
section p {
  font-family: "Times New Roman";
  font-size: 16px;
  text-align: center;
  margin-left: 10%;
  margin-right: 10%;
  text-decoration: none;
}

section button {
  background-color: #b83239;
  color: white;
  border: none;
  margin: 0px;
  padding: 10px;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
}

button:hover {
  background-color: black;
}

/*content css*/
.searchcontainer {
  display: flex;
  justify-content: space-around;
}

.searchcontainer input {
  background-color: rgb(180, 180, 180);
  color: rgb(0, 0, 0);
  font-weight: bolder;
  padding: 5px;
  font-family: Poppins;
  border: 0;
  width: 400px;
}

.shop-nav-grid {
  display: grid;
  grid-template-columns: 20% 20% 20% 20%;
  grid-auto-rows: minmax(50px, auto);
  grid-gap: 10px;
  justify-content: center;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 20px;
}

.shopbtn {
  background-color: #b83239;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  width: 100%;
}

.shopbtn:hover {
  background-color: black;
}

/*gridshop*/

.shop-grid-container {
  display: grid;
  grid-template-columns: 20% 20% 20% 20%;
  grid-auto-rows: minmax(300px, auto);
  grid-gap: 10px;
  /* or  we can do separate values   
    grid-row-gap: 10px;    
    grid-column-gap: 5px; 
    grid-template-areas:
    "header header"
    "sidebar article"
    "sidebar article";*/
  justify-content: center;
  text-align: center;
}

.shop-grid-container a {
  color: black;
  text-decoration: none;
  text-align: bottom center;
  margin: 0;
}

.grid-div {
  padding-bottom: 40px;
  padding-top: 40px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.grid-div p {
  font-family: Poppins;
  margin: 0;
}

.grid-div img {
  height: 300px;
}
/*end gridshop*/

@media (max-width: 575px) {
  .searchcontainer input {
    width: 80%;
  }
  .shop-nav-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-auto-rows: minmax(20px, auto);
    grid-gap: 3px;
    justify-content: space-evenly;
  }

  .shop-grid-container {
    display: grid;
    grid-template-columns: 40% 40%;
    grid-auto-rows: minmax(300px, auto);
    grid-gap: 10px;
    justify-content: space-evenly;
  }
}
