/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.sm-text {
  font-family: "Karla", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(179, 62%, 43%);
}

.xs-text {
  font-family: "Karla", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: hsl(71, 73%, 54%);
}

.body-text {
  font-family: "Karla", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: hsl(218, 22%, 67%);
}

.body-text-light {
  font-family: "Karla", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: hsl(0, 0%, 100%);
}

.md-text {
  font-family: "Karla", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
}

.lg-text {
  font-family: "Karla", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
}

.base-text {
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: hsl(0, 0%, 100%);
}

.base-text-bold {
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
}

body {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #e6eff5;
}

.community {
  max-width: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.community__header {
  background-color: hsl(0, 0%, 100%);
  padding: 25px;
}

.community__title {
  margin-bottom: 16px;
}

.community__subtitle {
  margin-bottom: 16px;
}

.community__description {
  margin-bottom: 20px;
  line-height: 24px;
}

.community__subscription {
  background-color: hsl(179, 62%, 43%);
  padding: 30px;
}

.community__subscription-title {
  margin-bottom: 18px;
  padding-top: 24px;
}

.community__price {
  margin-bottom: 8px;
}

.community__access {
  margin-bottom: 26px;
}

.community__benefits {
  background-color: hsl(179, 48%, 52%);
}

.community__signup-button {
  background-color: hsl(71, 73%, 54%);
  margin-bottom: 22px;
  border-radius: 4px;
  border: none;
  padding: 12px;
  width: calc(100% - 48px);
}

.community__benefits-title {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 26px;
}

.community__benefits-list {
  padding-bottom: 22px;
  line-height: 22px;
  padding: 25px;
}

@media screen and (min-width: 768px) {
  .community {
    max-width: 650px;
    display: flex;
    flex-wrap: wrap;
  }
  .community__header {
    width: 100%;
    padding: 35px 40px;
  }
  .community__subscription,
  .community__benefits {
    width: 50%;
    box-sizing: border-box;
    padding: 35px 40px;
  }
  .community__subscription {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .community__benefits {
    display: flex;
    flex-direction: column;
  }
  .community__benefits-list {
    flex-grow: 1;
  }
  .community__signup-button {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */