/* == GENERAL == */
* {
  padding: 0px;
  margin: 0px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

body {
  background-image: url('./assets/images/pattern-background-desktop.svg');
  background-size: 100% 46%;
  background-repeat: no-repeat;
  background-color: #E0E8FF;
}

/* == TYPOGRAPHY == */

@font-face {
  font-family: 'Red-Hat';
  src: url('./assets/fonts/RedHatDisplay-VariableFont_wght.ttf') format('truetype');
}

h1,
h2 {
  font-family: 'Red-Hat';
  text-align: center;
  color: #1F2E55;
  font-weight: 800;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 16px;
}

p {
  font-family: 'Red-Hat';
  text-align: center;
  font-size: 16px;
  color: #717FA6;
  font-weight: 500;
}

/* == CARD == */

.card {
  display: flex;
  flex-direction: column;
  width: 450px;
}

.content {
  background-color: white;
  padding: 48px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* == ILLUSTRATION == */

.illustration-hero {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* == DESCRIPTION == */

.description {
  margin-top: 17px;
  line-height: 26px;
}

/* == PRICE == */

.price {
  display: flex;
  align-items: center;
  background-color: #F7F9FF;
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
}

.annual-plan {
  margin-left: 20px;
  margin-right: 94px;
}

.plan-price {
  margin-top: 6px;
}

.change-plan:link,
.change-plan:visited {
  color: #382AE1;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Red-Hat';
  text-underline-offset: 4px;
}

.change-plan:hover {
  color: #766CF1;
  text-decoration: none;
}

/* == BUTTON == */

.proceed-btn {
  width: 100%;
  height: 50px;
  border-radius: 11px;
  background-color: #382AE1;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  box-shadow: 0px 25px 20px rgba(56, 42, 225, 0.2);
}

.proceed-btn:hover {
  background-color: #766CF1;
}

.proceed-btn,
.cancel-btn {
  margin-top: 32px;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Red-Hat';
}

.cancel-btn:link,
.cancel-btn:visited {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #717FA6;
}

.cancel-btn:hover {
  color: #1F2E55;
}

@media (max-width: 450px) {
  body {
    background-image: url('./assets/images/pattern-background-mobile.svg');
  }

  .content {
    padding: 24px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 14px;
    width: 81px;
  }

  p {
    font-size: 15px;
  }

  .card {
    width: 327px;
  }

  .description {
    line-height: 25px;
  }

  .price {
    margin-top: 24px;
    margin-bottom: 0;
    padding: 16px;
  }

  .annual-plan {
    margin-left: 20px;
    margin-right: 50px;
  }

  .plan-price {
    font-size: 14px;
    margin-top: 3px;
  }

  .change-plan {
    font-size: 13px;
  }

  .proceed-btn {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .cancel-btn {
    margin-top: 24px;
    margin-bottom: 8px;
  }
}