@import url(modern-normalize.css);
html * {
  margin: 0;
  padding: 0;
}

body {
  background-color: #2B4F5E;
}

h1, h2, h3, p, a {
  font-family: "Lato", sans-serif;
}

h1 {
  font-size: 1.75em;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.25em;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.25em;
  font-weight: 400;
  margin-bottom: 15px;
}

p {
  font-size: 1.15em;
  font-weight: 300;
  margin-bottom: 15px;
}

@media screen and (min-width: 400px) {
  h1 {
    font-size: 3.75em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.5em;
  }
  p {
    font-size: 1.25em;
  }
}

a {
  color: white;
}

a:hover {
  color: #C65E49;
  -webkit-transition: .25s;
  transition: .25s;
}

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

.text-container {
  width: 85%;
  text-align: left;
}

.underline-text {
  border-bottom: 1px solid;
}

hr {
  text-align: center;
  width: 90%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.v-container {
  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;
}

.h-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#logo-section {
  background-color: white;
}

#main-logo {
  max-height: 360px;
}

#intro-section {
  padding-top: 30px;
  border-top: double #C65E49 4px;
  color: white;
}
/*# sourceMappingURL=main.css.map */