html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background-color: hsl(204, 43%, 93%);
  font-family: "Karla", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

main {
  display: flex;
  align-items: center;
  height: 100svh;
}

ul {
  padding: 0;
  list-style-type: none;
  margin-block-end: 0;
}

h2 {
  font-size: 1.125rem;
}

.padding {
  padding: 1.5rem;
}

.container {
  display: grid;
  grid-template-columns: 100%;
  margin: 0 auto;
  max-width: 85%;
  box-shadow: 0px 5px 20px -10px hsl(179, 66%, 24%);
}

.join {
  background-color: hsl(0, 0%, 100%);
  border-radius: 6px 6px 0 0;
}
.join h1 {
  font-size: 1.25rem;
  color: hsl(179, 62%, 43%);
  margin-block-start: 10px;
}
.join .green {
  font-weight: 700;
  font-size: 0.9375rem;
  color: hsl(71, 73%, 54%);
  line-height: 1.1;
}
.join p {
  font-size: 0.875rem;
  color: hsl(218, 22%, 67%);
  line-height: 1.9;
}

.subscription {
  background-color: hsl(179, 62%, 43%);
  color: hsl(0, 0%, 100%);
}
.subscription > h2 {
  margin-block-start: 0;
}
.subscription > p {
  margin-block-start: 0.625rem;
  margin-block-end: 1.875rem;
}
.subscription .price {
  display: flex;
  align-items: center;
}
.subscription .price h2 {
  margin: 0;
  font-size: 2rem;
  padding-inline-end: 0.625rem;
}
.subscription .price p {
  margin: 0;
  color: hsl(179, 90%, 80%);
  font-weight: 250;
}
.subscription .button {
  background-color: hsl(71, 73%, 54%);
  font-family: inherit;
  font-size: inherit;
  color: hsl(0, 0%, 100%);
  padding: 0.875rem 0;
  width: 100%;
  border: none;
  border-radius: 0.3125rem;
  outline: none;
  box-shadow: 0px 5px 20px -10px hsl(179, 66%, 24%);
}

.why-us {
  background-color: hsl(179, 50%, 55%);
  color: hsl(0, 0%, 100%);
  border-radius: 0 0 6px 6px;
}
.why-us h2 {
  margin: 0;
}
.why-us li {
  font-weight: 250;
  font-size: 0.875rem;
  line-height: 1.4;
}

@media (min-width: 670px) {
  main {
    margin: 0 auto;
  }
  .padding {
    padding: 2.5rem;
  }
  .container {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: "a a" "b c";
    margin: 0 auto;
    max-width: 637px;
  }
  .join {
    grid-area: a;
  }
  .join h1 {
    font-size: 1.5rem;
    margin-block-start: 0;
    margin-block-end: 1.5rem;
  }
  .join .green {
    font-size: 1.125rem;
    margin-block-start: 0.75rem;
    margin-block-end: 0;
  }
  .join p {
    font-size: 1rem;
    margin-block-start: 0.5rem;
    margin-block-end: 0;
  }
  .subscription {
    grid-area: b;
    border-radius: 0 0 0 6px;
  }
  .why-us {
    grid-area: c;
    border-radius: 0 0 6px 0;
  }
}/*# sourceMappingURL=styles.css.map */