html,
body {
  height: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all ease-out .3s;
}

html,
body {
  font-size: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #428C58;;
  color: #424242;
  padding: 0;
  margin: 0;
  line-height: 1.5;
  position: relative;
  cursor: auto;
}

::-moz-selection {
  color: #fff;
  background: #19042e;
}

::selection {
  color: #fff;
  background: #19042e;
}

a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

.flex {
  display: flex;
}

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

.align-middle {
  justify-content: center;
}

.flex-column {
  flex-direction: column;
}

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

.text--large {
  font-size: 1.25em;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Typography resets */
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
  {
  margin: 0;
  padding: 0;
}

/* Default Link Styles */
a {
  color: #2ba6cb;
  text-decoration: none;
  line-height: inherit;
}

a:hover,
a:focus {
  color: #258faf;
}

a img {
  border: none;
}


/* Default paragraph styles */
p {
  font-family: inherit;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility;
}

.btn {
  font-weight: 400;
  font-size: 1.5em;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  display: block;
  border-radius: 6px;
  padding: .5em .5em .525em;
  margin: 0 auto 30px;
  width: 300px;
}

.btn:hover {
  color: #fff;
}

.full-bg {
  background: linear-gradient(45deg, #FFDCD4, #D4FFE1);
  background-image: url(../img/family-bg.jpg);
  background-size: cover;
  background-position: center center;
  border-bottom: 1px solid #037801;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

@media (max-height: 900px) {
  .full-bg {
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .full-bg .logo {
    width: 100%;
    max-width: 200px;
    margin: 1rem auto 0;
  }
}

.full-bg .content {
  width: 100%;
  height: 100%;
}

.full-bg img {
  width: 100%;
  max-width: 250px;
  padding: 1rem;
  align-self: center; 
}

.full-bg .copy p {
  max-width: 600px;
  padding: 0 1rem;
  text-shadow: 0 0 15px #effdf4d3;
  text-align: center;
}

img.headshot {
  border-radius: 50%;
  border: 6px solid #428C58;
  box-shadow: 0 0 40px #03491d22;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 190px;
}

.full-bg .logotype {
  margin: 0 auto 2rem;
}

footer {
  background: #428C58;
  border-top: 1px solid #3a8350;
}

footer p.legal {
  font-size: .875em;
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 40px;
  margin: 0;
}