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

body {
  background: #e0e8ff url(./images/pattern-background-mobile.svg) no-repeat center top;
  background-size: contain;
}

.container {
  border-radius: 1.25rem;
  width: 85%;
  min-width: 327px;
  max-width: 450px;
  margin: 4.4375rem auto;
  background-color: #FFF;
  box-shadow: 0px 40px 40px -20px rgba(13, 48, 189, 0.151826);
}

header img {
  width: 100%;
  border-radius: 1.25rem 1.25rem 0 0;
}

main {
  padding: 2rem 1.5rem;
  text-align: center;
}
main .main-title, main .billing__plan {
  color: #1f2f56;
}
main .description, main .billing__price {
  color: #7280a7;
}
main .main-title {
  margin-bottom: 1rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.8194rem;
}
main .description {
  width: 94.3%;
  max-width: 354px;
  margin: 0 auto 1.5rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5625rem;
}
main .billing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background-color: #f5f7ff;
  border-radius: 0.6875rem;
}
main .billing__info {
  margin: 0 auto 0 1.25rem;
}
main .billing__plan {
  margin-bottom: 0.1875rem;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.1575rem;
}
main .billing__price {
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1575rem;
}

.link-primary {
  color: #3829e0;
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.075rem;
}

.link-secondary {
  color: #7280a7;
  text-decoration: none;
}

.btn, .link-secondary {
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 900;
  line-height: 1.2406rem;
}

.btn {
  display: block;
  width: 100%;
  padding: 0.9375rem;
  margin-bottom: 1.5rem;
  border: none;
  border-radius: 0.6875rem;
  cursor: pointer;
}
.btn-primary {
  color: #FFF;
  background-color: #3829e0;
  box-shadow: 0px 20px 20px rgba(56, 42, 225, 0.190291);
}

@media only screen and (min-width: 768px) {
  body {
    background-image: url(./images/pattern-background-desktop.svg);
  }

  .container {
    margin: 6.3125rem auto;
  }
}
@media only screen and (min-width: 1200px) {
  main {
    padding: 2.8125rem 3rem 3rem;
  }
  main .main-title {
    font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 2.315rem;
  }
  main .description {
    margin-bottom: 1.25rem;
    font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.625rem;
  }
  main .billing {
    margin-bottom: 2rem;
    padding: 1.5625rem 1.5rem;
  }
  main .billing__plan {
    margin-bottom: 0.375rem;
    font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.3231rem;
  }
  main .billing__price {
    font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3231rem;
  }

  .link-primary {
    font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.1575rem;
  }
  .link-primary:hover {
    color: #756af1;
    text-decoration: none;
  }

  .link-secondary:hover {
    color: #1f2f56;
  }

  .btn {
    margin-bottom: 2rem;
  }
  .btn-primary:hover {
    background-color: #756af1;
  }

  .link-primary:active, .link-secondary:active, .btn:active {
    opacity: 0.5;
  }
}

/*# sourceMappingURL=style.css.map */
