* {
  margin: 0;
  padding: 0;
  font-family: "Fraunces", serif;
}
.Product_card {
  height: 100vh;
  width: 100%;
  background-color: hsl(30, 38%, 92%);
}

.cards {
  height: auto;
  width: 700px;
  border-radius: 15px;
  background-color: #fff;
}
.Prd_img {
  border-radius: 15px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.Per_head {
  font-family: "Montserrat", sans-serif;
  color: hsl(228, 12%, 48%);
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 500;
}
.card_text {
  font-family: "Montserrat", sans-serif;
  color: hsl(228, 12%, 48%);
  font-size: 18px;
  font-weight: 500;
}
.card_title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 41px;
}
.tot_price {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 38px;
  color: hsl(158, 36%, 37%);
}
.dis_price {
  font-family: "Montserrat", sans-serif;
  color: hsl(228, 12%, 48%);
  font-size: 18px;
  font-weight: 500;
  text-decoration: line-through;
}
.icon {
  position: relative;
  right: 20px;
}

.card_button {
  background-color: hsl(158, 36%, 37%);
  border: none;
  border-radius: 10px;
  padding: 15px 100px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.card_button:hover {
  background-color: hsl(158, 42%, 18%);
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

@media (max-width: 767px) {
  .cards {
    width: 340px;
  }
  .Prd_img {
    border-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .card_title {
    font-size: 33px;
  }
  .card_text {
    font-size: 16px;
  }
  .card_button {
    margin: 20px 0px;
  }
  .dis_price {
    margin-left: 15px;
  }
}
