.store-products {
  background-color: #000;
  min-height: 80vh;
  width: 100%;
  box-shadow: 0px -30px 10px #000;
  margin-bottom: 30px;
}

.emmetProduct {
  margin: 0 auto;
  display: flex;
  max-width: 60%;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 4rem;
}

.anchorProduct {
  text-decoration: none;
  transition: transform linear 0.2s;
}

.anchorProduct:hover {
  transform: scale(1.02);
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  height: 270px;
  width: 270px;
  border-radius: 50px;
}

.product-item img {
  max-width: 250px;
  position: relative;
  bottom: 1rem;
}

.product-item h3 {
  position: relative;
  bottom: 2rem;
}
