.products {
  margin: 100px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.prod-wrapper {
  color: #000;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.prod-img {
  max-width: 300px;
  height: 300px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-img img {
  max-width: 100%;
  max-height: 300px;
}

.prod-name {
  font-weight: bold;
  font-size: 20px;
  margin-top: 20px;
}

.prod-description {
  font-size: 14px;
  margin: 10px 0;
}

.prod-price {
  font-size: 16px;
}
.prod-price span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 1139px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 432px) {
  .main-title {
    font-size: 40px;
  }
}

/*# sourceMappingURL=catalog.css.map */
