* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 1024px) {
  body {
    padding: 10px;
  }
}

.product {
  width: 100%;
  height: 100%;
  padding: 15px;
  background-color: lightgray;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .product {
    border-radius: 25px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .product div {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.product--image {
  background-color: white;
  border-radius: 10px;
  box-shadow: 1px 2px 8px #575757;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .product--image {
    width: 40%;
  }
}
.product--title {
  font-size: 30px;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .product--title {
    font-size: 50px;
    margin-top: 0;
  }
}
.product--price {
  font-size: 40px;
  color: green;
  font-weight: bold;
}
.product hr {
  background-color: #000;
  height: 2px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.product--button {
  width: 100%;
  padding: 12px;
  background-color: blue;
  color: white;
  border: none;
  border-radius: 20px;
  box-shadow: 1px 2px 8px #575757;
  margin-top: auto;
}
@media screen and (min-width: 1024px) {
  .product--button {
    cursor: pointer;
  }
}/*# sourceMappingURL=style.css.map */