h1 {
  font-size: 2.4rem;
  color: var(--950);
  margin: 32px 10px;
}
h2 {
  font-size: 2.0rem;
  color: var(--600);
  margin: 32px 10px;
}
.description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.description__img {
  width: 100%;
  height: auto;
  padding: 16px;
  background-color: var(--400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.description__img picture {
  width: 300px;
  height: auto;
}
.description__img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.description__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-color: var(--400);
  width: 100%;
  height: auto;
}
.description__text img {
  width: 60px;
  height: 60px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.description__text-p { 
  font-size: 1.6rem;
  color: var(--50);
  text-align: center;
  line-height: 1.5;
}
.description__price {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  border-bottom: 10px solid var(--600);
}
.description__price-text {
  font-size: 2.0rem;
  font-weight: bold;
  color: var(--600);
  margin-top: 32px;
  margin-bottom: 32px;
  text-align: center;
}
.description__cta {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--700);
  color: var(--50);
  font-size: 2.0rem;
  font-weight: bold;
  margin: 32px auto;
}
@media (min-width: 744px) {
  h1 {
    font-size: 3.2rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  .description__text {
    width: 100%;
    height: auto;
  }
  .description__img {
    padding: 24px;
  }
  .description__img picture {
    width: 400px;
  }
  .description__text img {
    width: 80px;
    height: 80px;
  }
  .description__price-text {
    font-size: 2.4rem;
  }
  .description__text-p {
    font-size: 2.0rem;
    max-width: 600px;
  }
}
@media (min-width: 1100px) {
  h1 {
    font-size: 4.0rem;  
  }
  h2 {
    font-size: 3.2rem;
  }
  .description__img {
    padding: 32px;
  }
  .description__img picture {
    width: 700px;
  }
  .description__text-p {
    font-size: 2.4rem;
    max-width: 950px;
  }
}