body {
  background-color: #aeaeae;
  color: #000;
}
#logo,
h2,
.itens {
  width: calc(100vw - 40px);
}
#logo {
  max-width: 450px;
  margin-bottom: 20px;
}
h2,
.itens {
  max-width: 770px;
}
h2 {
  display: flex;
  flex-direction: row;
  color: #333;
  text-transform: uppercase;
  font-size: 1.5rem;
}
h2:before,
h2:after {
  content: "";
  flex: 1 1;
  border-bottom: 3px solid;
  margin: auto;
}
h2:before {
  margin-right: 10px;
}
h2:after {
  margin-left: 10px;
}
.itens {
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  margin: 0 auto 20px;
  grid-gap: 10px;
}
@media screen and (max-width: 767px) {
  .itens {
    grid-template-columns: repeat(auto-fit, 150px);
  }
}
.item {
  width: 100%;
  background: white;
  color: #000;
  padding: 10px;
}
.item[data-link]:hover {
  background: #bcf5bc;
  cursor: pointer;
}
.item img {
  width: 100%;
}
.item p {
  text-transform: uppercase;
  font-weight: 900;
  margin: auto;
}
