body {
  background-image: url("../images/background-forest.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom;
  background-size: cover;
}

#store_background {
  margin:auto;
  margin-top:20px;
  width:80%;
  color: #060606;
  background-color: #F8F9F9;
  /* Offset sur le côté, offset sur la hauteur, effet de flou, longeur de l'ombre
  et couleur de l'ombre, contient shadow-color, background-color, box-color et l'opacité
  Ici on omet volontairement la longueur de l'ombre et on en superpose deux */
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-grow: 1;
  z-index: -1000;
}
.store_element {
  display:flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  align-items: center;
  max-height: 100%;
  min-width: 200px;
  max-width:32%;
  margin:auto;
  margin-top:10px;
  margin-bottom: 10px;
  padding-bottom: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s ease-out;
}

.store_element:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  transform: scale3d(1.03, 1.03, 1);
}

.store_side_element {
  display: flex;
  min-width: 200px;
  flex-direction: column;
}

div .store_element > div:first-child {
  width:100%;
  min-width: 100px;
  max-width:70%;
}

.store_element img {
  width: 100% ;
  height:auto;
  /* box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); */
}

.store_bouton {
  background-color: #36ae85;
  padding-top: 0.7vw;
  padding-bottom: 0.7vw;
  margin-bottom: 20px;
  text-align: center;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  padding-left: 4vw;
  padding-right: 4vw;
}

.store_bouton:hover {
  transform:scale3d(1.1, 1.1, 1);
  transition: transform .4s;
  box-shadow: inset 0px 0px 10px 0px rgba(0,128,0,0.75);
}

.store_item_title {
  font-size:20px;
  text-align: center;
  font-weight: bold;
}

.store_description {
  color:gray;
  flex-grow: 1;
  font-size: 20px;
  margin-left: 30px;
  margin-right: 30px;
  text-align: justify;
}

#store_titre {
  flex-basis: 100%;
  text-align: center;
  font-size: 40px;
}

.prix {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}

.store_price_old {
  font-size: 15px;
  color:red;
}

a#store_link {
  text-decoration:none;
  color:white;
}

a#store_link:hover {
  font-weight: bold;
  color:white;
}
