/*
 * Color Reference
 *
 * green: #6ECD31
 * light-beige rgb(248, 248, 243)
 * charcoal: #424242
 * red: rgb(255, 68, 66)
 */

/**
 * base styles
 */

* {
  box-sizing: border-box;
}

body {
  background-color: white;
  color: #3a3a3a;
  font-family: "open-sans",Verdana,Arial,Helvetica,sans-serif;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: normal;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: "chaparral-pro","Helvetica Neue",Arial,Helvetica,sans-serif;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: -.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1 {
  font-size: 40px;
  margin-top: 2em;
}

h2 {
  font-size: 32px;
  line-height: 1.38462;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 20px;
}

a {
  color: #6ecd31;
  text-decoration: none;
  -webkit-font-smoothing: initial;
}

p {
  margin: 0;
}

ul {
  padding-left: 0
}

/**
 * helpers
 */

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 12px;
}

.title {
  font-size: 68px;
  margin: 1.5em 0 0.5em 0;
}

.sub-title {
  font-size: 30px;
  margin: -25px 0 50px 0;
}

.text-center {
  text-align: center;
}

.highlight {
  background-image: url("/images/smear-callout.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 5px;
}

.lead {
  font-family: "open-sans",Verdana,Arial,Helvetica,sans-serif;
  font-size: 26px;
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  margin-top: 3em;
  margin-bottom: 3em;
}

.cta-button {
  font-size: 16px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  background-color: rgb(255,68,66);
  color: white;
  padding: 9px 24px;
  border-radius: 4px;
  line-height: 1.6875;
  font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;
}

.bottom-cta {
  margin-top: 48px;
  margin-bottom: 48px;
  text-align: center;
}

/**
 * layout
 *
 * Flexbox properties need vendor prefixes. These helper
 * classes allow quick layout styling, without needing to apply
 * vendor prefixes everywhere.
 * Run through https://autoprefixer.github.io/ if you need to make
 * changes.
 */

 .box {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
 }

 .box-y {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
 }

 .box-center {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   -webkit-box-pack: center;
       -ms-flex-pack: center;
           justify-content: center;
 }

 .box-between {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
 }

 .box-around {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
 }
