@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Red Hat Display", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../images/pattern-background-desktop.svg) no-repeat;
  background-size: contain;
  background-color: hsl(225, 100%, 94%);
}

.main-div {
  max-width: 452px;
  max-height: 700px;
  background-color: white;
  text-align: center;
  border-radius: 1.125em;
}

.hero-img img {
  min-width: 100%;
  min-height: 100%;
  border-radius: 1.125em 1.125em 0 0;
}

.product-description {
  padding: 3em;
  font-size: 1em;
}
.product-description h1 {
  color: hsl(223, 47%, 23%);
  font-weight: 900;
}
.product-description .description {
  padding: 1.5625em 0;
  color: hsl(224, 23%, 55%);
}
.product-description .plan-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.125em;
  background-color: hsl(225, 100%, 98%);
  padding: 1.25em;
  margin-bottom: 2.1875em;
  border-radius: 0.625em;
}
.product-description .plan-div p:nth-child(3) {
  font-weight: 700;
}
.product-description .plan-div .plan-anual {
  font-weight: 700;
  color: hsl(223, 47%, 23%);
  margin-left: -3em;
}
.product-description .plan-div .price {
  margin-left: -3em;
  color: hsl(224, 23%, 55%);
}
.product-description .btn-div {
  display: flex;
  flex-direction: column;
}
.product-description .btn-div button {
  font-weight: 700;
  border: none;
  padding: 1em;
  border-radius: 0.625em;
  transition: 0.3s ease-in-out;
}
.product-description .btn-div .payment-btn {
  color: white;
  background-color: hsl(245, 75%, 52%);
  box-shadow: 0 0.625em 1.25em hsla(245, 68%, 46%, 0.63);
  z-index: 1;
}
.product-description .btn-div .payment-btn:hover {
  background-color: hsl(245, 70%, 33%);
}
.product-description .btn-div .cancel-btn {
  background-color: white;
  color: hsl(224, 23%, 55%);
  margin-top: 1.5625em;
}
.product-description .btn-div .cancel-btn:hover {
  background-color: rgb(234, 238, 255);
}

.attribution {
  font-size: 1em;
  text-align: center;
  max-width: 300px;
  padding: 2em;
  font-weight: 700;
}

.attribution a {
  color: hsl(245, 75%, 52%);
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .body {
    background: url(../images/pattern-background-mobile.svg) no-repeat;
    overflow-x: hidden;
    max-width: 100%;
  }
  .main-div {
    max-width: unset;
    max-height: unset;
    width: 90%;
  }
  .hero-img img {
    width: 100%;
  }
  .product-description {
    padding: 1em;
  }
  .product-description .plan-div {
    justify-content: space-between;
    gap: unset;
  }
  .product-description .plan-div .plan-anual {
    margin-left: unset;
  }
  .product-description .plan-div .price {
    margin-left: unset;
  }
}/*# sourceMappingURL=style.css.map */