/* Products */

.products {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.products__title {
  font-family: RobotoExtraBold;
  font-size: 36px;
  color: #1f2937;
}

.products__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
}

.products__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
}

.products__img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.products__subtext {
  text-align: center;
  font-weight: bold;
}
