* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #f3f3f3;
}

.divideLine {
  height: 8px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(116, 172, 222, 0)), color-stop(#74acde), to(rgba(116, 172, 222, 0)));
  background-image: linear-gradient(to right, rgba(116, 172, 222, 0), #74acde, rgba(116, 172, 222, 0));
}

.productCardContainer {
  width: 100%;
  padding-bottom: 0px;
}

.productCardContainer .grid-x {
  width: 100%;
  margin: auto;
  padding-top: 16px;
  padding-bottom: 48px;
}

.productCardContainer .product-card-heading {
  width: 90%;
  margin: auto;
  padding-top: 32px;
  text-align: center;
}

.productCardContainer .product-card-heading h1 {
  font-size: 2em;
}

.productCardContainer .productCard {
  display: block;
  margin: 24px;
  width: 300px;
  -webkit-box-shadow: 4px 4px 16px #202221;
          box-shadow: 4px 4px 16px #202221;
  border-radius: 8px;
  -webkit-transition: -webkit-box-shadow .2s;
  transition: -webkit-box-shadow .2s;
  transition: box-shadow .2s;
  transition: box-shadow .2s, -webkit-box-shadow .2s;
}

.productCardContainer .productCard img {
  border-radius: 8px 8px 0px 0px;
}

.productCardContainer .productCard .cardBottomContainer {
  background-color: #f3f3f3;
  border-radius: 0px 0px 8px 8px;
  padding: 0px 16px 16px;
}

.productCardContainer .productCard .cardBottomContainer .cardName {
  padding: 16px 0px;
  font-weight: bold;
  font-size: 1em;
  margin: 0;
}

.productCardContainer .productCard .cardBottomContainer .cardPrice {
  padding: 8px 0px 0px;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
}

.productCardContainer .productCard .cardBottomContainer .shopbutton {
  display: block;
  text-align: center;
  width: 100%;
  margin: 0px 0px;
  font-family: "Rubik", sans-serif;
}

.productCardContainer .productCard .cardBottomContainer .shopbutton:hover {
  background-color: #4b93d4;
}

@media screen and (min-width: 640px) {
  .productCardContainer {
    width: 100%;
    padding-bottom: 100px;
  }
  .productCardContainer .grid-x {
    width: 100%;
    margin: auto;
    padding-top: 16px;
    padding-bottom: 48px;
  }
}

@media screen and (min-width: 1024px) {
  .productCardContainer {
    width: 100%;
    padding-bottom: 400px;
  }
  .productCardContainer .grid-x {
    width: 100%;
    margin: auto;
    padding-top: 16px;
    padding-bottom: 48px;
  }
}

@media screen and (min-width: 1740px) {
  .productCardContainer {
    width: 100%;
  }
  .productCardContainer .grid-x {
    width: 70%;
    margin: auto;
    padding-top: 16px;
    padding-bottom: 48px;
  }
}
/*# sourceMappingURL=cards.css.map */