/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* HERO SECTION */
.hero_container {
  display: flex;
  flex-wrap: wrap;
  background-color: #d9e4d9;
}

.content_box {
  flex: 1;
  margin: 10px;
  padding: 20px;
  background-color: #ffffff;
  text-align:center;
}

h1.hero_headline {
    text-align: center;
    color: #000000;
    font-size: 44px;
    font-weight: 700;
}

h2.hero_headline {
    text-align: center;
    color: #000000;
    margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero_container {
    flex-direction: column;
  }
}