* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: hsl(30, 38%, 92%);
  font-size: 14px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.card {
  display: flex;
  flex-direction: row;
  background-color: hsl(0, 0%, 100%);
  border-radius: 10px;
}

.image {
  max-width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.info {
  padding: 40px;
  max-width: 325px;
}

.title {
  text-transform: uppercase;
  color: hsl(228, 12%, 48%);
  letter-spacing: 5px;
}

h1 {
  font-family: Fraunces;
  font-weight: 700;
  font-size: 35px;
  color: hsl(212, 21%, 14%);
  line-height: 35px;
}

.description {
  line-height: 25px;
  color: hsl(228, 12%, 48%);
}

.price {
  display: flex;
  align-items: center;
}

.new-price {
  font-family: Fraunces;
  font-weight: 700;
  font-size: 35px;
  color: hsl(158, 36%, 37%);
}

.old-price {
  color: hsl(228, 12%, 48%);
  text-decoration: line-through;
  padding-left: 20px;
}

.button {
  background-color: hsl(158, 36%, 37%);
  text-decoration: none;
  font-weight: 700;
  font-family: Montserrat;
  color: hsl(0, 0%, 100%);
  text-align: center;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: hsl(221, 100%, 96%) 7px 7px 20px;
}
.button:hover {
  transition: all 0.2s;
  transform: translateY(-2px);
  background-color: hsl(156.3, 42.2%, 17.6%);
}

.icon {
  margin-right: 15px;
}

.u-padding-bottom {
  padding-bottom: 25px;
}

.attribution {
  font-size: 11px;
  text-align: center;
  position: absolute;
  bottom: 0;
  margin-bottom: 20px;
}

.attribution a {
  color: hsl(158, 36%, 37%);
  font-weight: 400;
}

@media (max-width: 640px) {
  .card {
    display: flex;
    flex-direction: column;
  }
  .image {
    max-width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px 10px 0 0;
  }
  .info {
    padding: 30px;
  }
  .old-price {
    padding-left: 15px;
  }
  .u-padding-bottom {
    padding-bottom: 12px;
  }
  h1 {
    font-size: 30px;
  }
}/*# sourceMappingURL=styles.css.map */