@import "https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css";
/*@import "geometric.css";*/


html {
  color: #3d4434;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 1.75;
}

p, ul, h1, h2 {
  margin-top: 0;
}

/*
 * 40px / 56px
 */
h1 {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}

/*
 * 24px / 28px
 */
h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.166666667;
  margin-bottom: 2.625rem;
}

p, ul {
  margin-bottom: 1.75rem;
}

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

li {
  display: inline-block;
}

ul a {
  text-decoration: none;
}

ul a:hover {
  text-decoration: underline;
}

.container {
  margin: 8% 12%;
  max-width: 32em;
}

/* right around 660px we hit our max measure */
@media (min-width: 660px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}

/* do flex stuff only below tablet */
@media (max-width: 759px) {
  ul {
    display: flex;
    flex-wrap: wrap;
    -webkit-align-content: flex-start;
    align-content: flex-start;
  }

  li {
    -webkit-flex-grow: 1;
    -webkit-flex-shrink: 0;
    -webkit-flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 50%;
  }
}

/* tweaked styles for tablet and up */
@media (min-width: 760px) {
  li {
    margin-left: 15px;
  }

  li:first-child {
    margin-left: 0;
  }
}

