* {
  box-sizing: border-box;
}

.store-item-container {
  background-color: rgba(211, 199, 180, 0);
  /*width: 20rem;*/
  /*display: block;*/
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  row-gap: 50px;
  padding: 0 50px; /* Adds left and right padding */

}

.store-item {
  padding-bottom: 0;
  margin:0;
}

img {
  width:15rem; 
  display: block; 
  margin-left: auto; 
  margin-right: auto; 
  border-radius: 2px;
  margin-bottom: 2rem;
}

.product-link {
  text-decoration: none;
  color:rgb(54, 51, 82);
}

a.product-link:hover {
  transition-duration: 0.4s;
  color: rgb(74, 74, 74, 0.7);
}

.product-name, .price {
  text-align: center;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media (max-width: 1100px) {
  a.button {
    font-size: 1rem; 
  }
}


