@charset "UTF-8";
.shopLink {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.shopLink li {
  margin: 50px auto 0;
  padding: 10px;
  width: 50%;
  text-align: center;
}
.shopLink li a {
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 10px;
  padding: 10px;
  color: #000;
  display: block;
  font-size: 30px;
}
.shopLink li a:hover {
  background-color: #000;
  color: #fff;
}