/**
 *
 * Styles common to ALL pages in the 2.0 redesign.
 *
 */
:root {
  font-size: 18px;
}

body {
  margin: 0;
  font-family: "Nunito Sans";
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
}

.center {
  max-width: 61em;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1em;
}

.center.wide {
  max-width: 75em;
  padding: 0;
}

.center.narrow {
  max-width: 40em;
}

.themed-bg {
  background: linear-gradient(258.83deg, #8637e1 41.76%, #5c00c6 76.01%);
}

h1 {
  line-height: 1;
  font-size: min(12vw, 4.5em);
  font-weight: 900;
}

#trusted-by-text {
  margin-top: 4em;
  margin-bottom: 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.3em;
}

#trusted-by-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}
#trusted-by-grid img {
  max-width: 100%;
  width: 31vw;
}
@media (min-width: 575px) {
  #trusted-by-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row-gap: 1em;
  }
  #trusted-by-grid.five-col {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  #trusted-by-grid img {
    width: unset;
  }
}

two-column-section {
  --margin-y: 8em;
  margin-top: var(--margin-y);
  margin-bottom: var(--margin-y);
}
two-column-section img {
  width: 100%;
  max-width: 530px;
}

get-started {
  margin-top: -8em;
  margin-bottom: 8em;
  margin-right: auto;
  margin-left: auto;
  max-width: 40em;
}

#features-headline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.7em;
  font-weight: 900;
  line-height: 1;
  max-width: 15em;
  margin: 0 auto;
  margin-bottom: 1em;
  text-align: center;
  padding: 0 0.3em;
}
#features-headline span {
  color: white;
}

#features-grid {
  display: grid;
  gap: 2em;
  grid-template-columns: 1fr;
}
@media (min-width: 400px) {
  #features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 800px) {
  #features-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.feature {
  color: white;
}
.feature img {
  width: 3em;
}
.feature .feature-title {
  font-weight: 700;
  font-size: 1.3em;
}

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