@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Overpass:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Overpass:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap");
/* reset styles */
* {
  color: inherit;
  margin: 0;
}

body {
  font-family: Poppins;
}

img {
  max-width: 100%;
}

.gap-1 > * {
  padding: 10px;
}

.gap-1 {
  margin-left: -10px;
  margin-right: -10px;
}

.justify-center {
  justify-content: center;
}

.text-white {
  color: white;
}

.bg-white {
  background-color: white;
}

.bg-cream {
  background-color: hsl(30, 38%, 92%);
}

.text-Black {
  color: hsl(212, 21%, 14%);
}

.text-Grey {
  color: hsl(228, 12%, 48%);
}

.text-Green-500 {
  color: hsl(158, 36%, 37%);
}

.card {
  display: block;
  padding: 0.75rem;
  border: 1px solid #ddd;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.btn {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #e2e2e2;
}

.btn-Green-500 {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: hsl(158, 36%, 37%);
}
.btn-Green-500:hover {
  background-color: hsl(158, 36%, 42%);
}

.p-1 {
  padding: 0.75rem;
}

.p-2 {
  padding: 1.5rem;
}

.m-0 {
  margin: 0;
}

.mr-1 {
  margin-right: 0.75rem;
}

.mb-1 {
  margin-bottom: 0.75rem;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

.display-f {
  display: flex;
}

.font-md {
  font-size: 1rem;
}

.font-xl {
  font-size: 2rem;
}

.align-items {
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 0;
}

.container {
  width: 600px;
  height: 450px;
  flex-wrap: wrap;
  overflow: hidden;
  border-radius: 15px;
}

.img-size {
  flex: 1;
}
.img-size img {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  object-fit: cover;
}

.content {
  flex: 1;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  flex-direction: column;
  font-family: "Montserrat" sans-serif;
}
.content h2 {
  letter-spacing: 4px;
  font-weight: 500;
  text-transform: uppercase;
}
.content h3 {
  line-height: 1;
  font-family: "Fraunces", serif;
  font-weight: 700;
}
.content p {
  font-family: "Montserrat";
  line-height: 1.6;
}
.content .price {
  align-items: center;
}
.content .price .green {
  font-family: "Fraunces";
  font-weight: 700;
}
.content .price .strike {
  text-decoration: line-through;
}
.content .btn {
  text-align: center;
  font-weight: 700;
  border: none;
  transition: background-color 0.3s ease;
}
.content .btn:hover {
  background-color: hsl(158, 36%, 27%);
}

@media (max-width: 375px) {
  .container {
    flex-direction: column;
    width: 90%;
    height: auto;
  }
  .img-size img {
    border-radius: 15px 15px 0 0;
  }
  .content {
    padding: 1.5rem;
  }
  .content h2 {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }
  .content h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
  .content p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }
  .content .price {
    flex-direction: row;
    gap: 1rem;
  }
  .content .price .green {
    font-size: 1.7rem;
  }
  .content .price .strike {
    font-size: 0.85rem;
  }
  .content button {
    padding: 0.75rem;
    font-size: 1rem;
  }
}
.desktop-img {
  display: block;
}
@media (max-width: 600px) {
  .desktop-img {
    display: none;
  }
}

.mobile-img {
  display: none;
}
@media (max-width: 600px) {
  .mobile-img {
    display: block;
  }
}