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

body {
  background-color: hsl(30, 38%, 92%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  display: flex;
  flex-direction: row;
  width: 480px;
  height: 350px;
  border-radius: 25px;
  background-color: hsl(0, 0%, 100%);
}

.card img {
  width: 250px;
  height: 350px;
  border-radius: 25px 0 0 25px;
}

.text-content {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.text-content p {
  color: hsl(228, 12%, 48%);
  font-size: 0.875em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.text-content h1 {
  color: hsl(212, 21%, 14%);
  font-family: "Fraunces", serif;
  font-weight: 700;
}

.price-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: "Fraunces", serif;
  padding-bottom: 10px;
}

.price-tag h1 {
  color: hsl(158, 36%, 37%);
}

.price-tag p {
  margin-left: 10px;
  text-decoration: line-through;
}

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: hsl(158, 36%, 37%);
  width: 100%;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
}

.btn:hover {
  background-color: hsl(158, 36%, 25%);
}

.btn img {
  width: 20px;
  height: 20px;
}

.btn a {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  margin-left: 10px;
  font-size: 0.875em;
  font-weight: 500;
}

@media (max-width: 600px) {
  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.attribution {
  font-size: 11px;
  text-align: center;
  padding-top: 30px;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
