@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap");
:root {
  --main-bg-color: #ebebeb;
  --blue-bg-color: #D1EAFE;
  font-size: 16px;
  --nav-black: #000000;
}

@media screen and (min-width: 750px) {
  :root {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  :root {
    font-size: 20px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  padding: 10%;
  background-color: var(--main-bg-color);
  overflow-x: hidden;
  font-family: 'Urbanist';
  font-weight: 300;
  line-height: 1.4;
}

body nav {
  text-align: left;
}

body h2 {
  font-size: 1.7rem;
  text-align: left;
  font-weight: 500;
}

body h1 {
  font-size: 2rem;
  text-align: left;
  padding-bottom: 5%;
  padding-top: 7%;
}

body .section-subhead {
  color: var(--off-white);
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  opacity: .85;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

body .card-headline {
  font-size: 1.6rem;
  font-weight: 400;
}
/*# sourceMappingURL=main.css.map */