body {
  background-color: rgba(11, 82, 26, 0.01);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#061c50), to(#0b521a));
  background-image: linear-gradient(180deg, #061c50, #0b521a);
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

.hero-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Bitter, serif;
  color: #fff;
}

.centered-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.button {
  border-radius: 5px;
  background-color: #e8b756;
  font-family: Lato, sans-serif;
  color: #061c50;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.button:hover {
  background-color: rgba(232, 183, 86, 0.8);
}

.heading {
  color: #e8b756;
}

.paragraph {
  font-family: Lato, sans-serif;
  color: #e8b756;
  font-size: 22px;
  line-height: 30px;
  font-style: italic;
}

.heading-2 {
  font-family: 'Droid Sans', sans-serif;
  color: #e8b756;
}

.text-span {
  font-size: 18px;
  font-style: italic;
}

.heading-3 {
  margin-bottom: 40px;
  color: #e8b756;
}

@media screen and (max-width: 767px) {
  .hero-overlay {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 479px) {
  .centered-container {
    text-align: left;
  }
}