.product {
  width: 100%;
  padding: 15px;
  background-color: lightgray;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .product {
    max-width: 350px;
    padding: 20px;
    margin: auto;
  }
}
@media screen and (min-width: 1024px) {
  .product {
    max-width: 400px;
    padding: 25px;
    box-shadow: 5px 5px 10px 0px;
  }
}
.product--image {
  width: 100%;
}
.product--image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .product--image img {
    height: 250px;
  }
}
@media screen and (min-width: 1024px) {
  .product--image img {
    height: 300px;
  }
}
.product--title {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .product--title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .product--title {
    font-size: 24px;
  }
}
.product--price {
  font-size: 20px;
  color: green;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .product--price {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .product--price {
    font-size: 28px;
  }
}
.product--button {
  width: 90%;
  padding: 12px;
  background-color: blue;
  color: white;
}
@media screen and (min-width: 768px) {
  .product--button {
    padding: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .product--button {
    width: auto;
    padding: 15px 40px;
  }
  .product--button:hover {
    background-color: #000033;
  }
}/*# sourceMappingURL=index.css.map */