.page-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 30vw 30vw 30vw;
  align-items: center;
  align-content: center;
  padding: 0px 40px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.grid-item img {
  max-height: 250px;
  height: 20vh;
  padding: 10px;
}

.item-name {
  font-family: Oswald, sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}

.item-title {
  font-family: Lato, sans-serif;
  font-size: 13px;
  display: block;
  letter-spacing: 0.065em;
  font-weight: 400;
  line-height: 1.5;
}

.item-desc {
  height: 42px;
  margin-top: 0.5rem;
  letter-spacing: 0.015em;
  font-size: 14px;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.item-price {
  display: block;
}

.item-price span {
  padding: 0px 20px;
}

.item-price span:first-of-type {
  font-weight: 800;
}

@media only screen and (max-width: 900px) {
  .page-grid {
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
  }

  .grid-item img {
    max-height: 250px;
    height: 30vh;
    padding: 10px;
  }
}
