body{
	margin: 0;
	font-family: sans-serif;
}

.main{
	padding: 0;
}

/*----hero image----*/
.heroImageContainer{
  position: relative;
  text-align: center;
  color: whitesmoke;
}

.heroImageContainer img {
  height: 550px;
  width: 1250px;
  border-radius: 10px;
}

.heroImageContainer .textCenter{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: whitesmoke;
  font-weight: bold;
  font-family: cursive;
}

.heroImageContainer .textCenter button{
  background-color: rgb(231, 105, 168);
  color: whitesmoke;
  border: none;
  border-radius: 8px;
  padding: 18px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  transition-duration: 0.4s;
}

.heroImageContainer .textCenter button:hover{
  background-color: rgb(32, 115, 216);
}


/*------Featured Box--------*/
.featuredBox{
  margin: 0;
  background-color: #eaeaea;
  padding-right: 150px;
  padding-left: 150px;
  overflow: hidden;
  box-sizing: border-box;
}

.featuredBox h2{
  padding-top: 2rem;
  color: rgb(231, 105, 168);
  text-decoration: underline;
}

.featuredRow{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.featuredColumn{
  -ms-flex: 20%;
  flex: 20%;
  max-width: 35%;
  padding: 0 4px;
  margin-bottom: 20px;
}


.featuredContent h3{
  color: rgb(231, 105, 168);
}


.featuredContent img{
  width: 100%;
  height: 13rem;
  border-radius: 8px;
}

.featuredContent button{
  background-color: rgb(231, 105, 168);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  text-decoration: none;
  text-align: center;
  transition-duration: 0.4s;
}

.featuredContent button:hover{
  background-color: rgb(32, 115, 216);
}

/*-----Product List-----*/
.productList{
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-right: 15%;
  margin-left: 15%;
  overflow: hidden;
  box-sizing: border-box;
}

.productRow{
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}

.productColumn{
  -ms-flex: 20%;
  flex: 20%;
  max-width: 23%;
  padding: 0 4px;
  margin-bottom: 20px;
}

.productContent h3{
  color: rgb(231, 105, 168);
}

.product{
  padding-bottom: 10px;
}

.product:hover p{
  color: rgb(231, 105, 168);
}

.product img{
  width: 4rem;
  height: 3rem;
  float: left;
  border-radius: 5px;
}

.productText {
  padding-top: 0;
  font-size: 12px;
  padding-left: 75px;
}