ul {
  list-style-type:none;
  padding:0;
  margin:0;
}

li {
  border:1px solid lightgrey;
  padding:.5rem 1rem;
}

li:first-child {
  border-top-left-radius:10px;
  border-bottom-left-radius:10px;
}

li:last-child {
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
}

.flex {
  display:flex;
}

.flex-center {
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  width:60%;
  margin:0 auto;
  margin-top:2rem;
}

.store {
  width:60%;
  margin:0 auto;
  justify-content:space-around;
  flex-wrap:wrap;
  margin-top:2rem;
  margin-bottom:2rem;
}

.store img {
  border-radius:20px;
}

.storeInfo {
  border-left:3px solid #ee8e7f;
  padding-left:1rem; 
  line-height:1.5rem;
}

.storeInfo a {
  text-decoration: none;
  color:black;
}

.storeInfo a:hover {
  color:#302620;
}

.store h3 {
  margin-bottom:6rem;
}