@charset "utf-8";

#items ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding-left: 0;
}
#items ul li {
  width: 24%;
  background-color: rgb(0 0 0 / .3);
  border-radius: 10px;
  padding-top: 1.5%;
  padding-left: 0%;
  padding-right: 0%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}
/*
#items ul li:first-child {
  margin-left: 0.5%;
  margin-right: 0.5%;
}
  */
#items ul li.four-thirds {
  width: 33%;
}
#items a {
	text-decoration: none;
  color: #dadada;
}
#items img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
#items p {
	margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.item-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 50px;
  background-color: rgb(0 0 0 / .3);
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 3.5em;
}
@media (max-width: 768px) {
  #items ul {
    flex-wrap: wrap;
  }
  #items ul li {
    width: 96%;
    margin-bottom: 1em;
  }
  #items ul li.four-thirds {
    width: 96%;
  }

}