
.masthead {
  /* Layout declarations */
  background: url("../img/erinsephia.jpg") no-repeat fixed center;
  background-size: cover;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
               0px 8px 13px rgba(0,0,0,0.1),
               0px 18px 23px rgba(0,0,0,0.1);
  /* Typography declarations */
  font-size: 4.3vw;;
  font-family:'Economica', sans-serif;
  font-color: #FFF;
  height: 100vh;
  padding-top: 100px;
}

.masthead-intro {
  margin: 1em 0 0 0;
  font-color: #FFF;
}

.masthead-heading {
  /* Typography declarations */
  font-size: 10rem;
  font-family:'Bangers';
  /* Layout declarations */
  padding: 0;
  margin: 0 0 1em;
}

/* BODY */
/* General styling for the three sections of the body */
section {
  /* Layout declarations */
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3em;
  background-color:#FFF;
}

/* Gradient that runs through the body */
.gradient {
  padding: 10em;
  /* can be treated like a fallback */
  background-color: #cccccc;;
  /* will be "on top", if browser supports it */
  background-image: linear-gradient(#000000, #262626);
}

/* The h2 tags are the main categories */
h2 {
  /* Typography declarations */
  font-size: 4em;
}

/* The h3 tags are the additional questions */
h3 {
  /* Typography declarations */
  font-style: italic;
  font-size: 2.5em;
}

/* The p tags that are descendants of the section tags are the answers */
section p {
  /* Typography declarations */
  font-size: 2em;
  line-height: 1.3em;
}

/* This class is included in the last p tag of each section to create more space */
.space-maker {
  /* Layout declarations */
  margin-bottom: 2em;
}


/* Responsive design */
@media only screen and (max-width: 500px) {
  /* HEADER */
  .masthead {
    padding: 1em;
  }
  
  .masthead-intro {
    font-size: 1.5rem;
  }
  
  .masthead-heading {
    font-size: 4rem;
  }
  
  /* BODY */
  .gradient {
    padding: 5em;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  section p {
    font-size: 1rem;
  }
  
  /* FOOTER */
  .content-footer {
    padding: 4em;
  }
  
  .social > li {
  /* Layout declarations */
  display: block;
  margin-right: 0;
  }
  
  a {
    line-height: 3em;
  }
  
  .content-footer p a {
    line-height: 0;
  } 
}

  /* FOOTER */
@media only screen and (max-width: 344px) {
  .content-footer p a {
    line-height: 3em;
  }
}