/* GLOBAL STYLES */

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* BODY STYLES */

/*body {
  background-color: #FEDCD6;
}
*/
/* BUTTON STYLES */

.nav-arrows {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.nav-arrow {
  display: block;
  text-align: left;
  margin-left: 10px;
}

.nav-arrow-next {
  margin-right: 10px;
}
.nav-arrow a {
  font-size: 1.8em;
  color: #000;
}

.nav-arrow span {
  font-size: .8em;
}

.download-button {
  display: inline-block;
  height: 100px;
  width: 300px;
  border: 1px solid #000;
  border-radius: 3px;
  background-color: #fff;
  margin: 25px 25px 0 25px;
  text-align: left;
  color: #000;
  font-size: 1.5em;
  /*box-shadow: 5px 5px 10px #FCAC9D;*/
}

.download-button img {
  height: 100%;
  margin-right: 14px;
  border-radius: 3px;
}

.download-button:hover {
  color: #000;
  box-shadow: none;
}

/* MAIN CONTENT STYLES */

.lesson-container {
  background-color: #fff;
  text-align: left;
  color: #000;
  font-family: 'Hind', sans-serif;
  width: 85%;
  /*border: solid 5px #FA5B3D;*/
  margin: 25px auto 75px auto;
  padding: 15px;
}

.lesson-container a {
  color: #0095B7;
}

.lesson-container a:hover {
  color: #A3EEFF;
}

.lesson-header {
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
}

.lesson-header img {
  width: 100px;
  float: left;
  margin-right: 30px;
  margin-bottom: 10px;
}

.lesson-header h1 {
  font-family: 'Delius', cursive;
  font-size: 4em;
  margin-top: 30px;
}

.lesson-header h2 {
  font-size: 1.8em;
  padding-left: 15px;
  margin-top: 0;
}

.lesson-section-heading {
  font-family: 'Delius', cursive;
  font-size: 2.5em;
}

.lesson-section p {
  padding-left: 1em;
  font-size: 1.2em;
}

/*RESPONSIVE RULES */

@media only screen and (min-width: 704px) {
  
  .download-button {
    margin: 25px 25px 0 25px;
  }

  .lesson-container {
    padding: 50px 35px;
  }

  .lesson-header h1 {
      margin-top: 0;
  }

  .lesson-header h2 {
    padding-left: 7em;
  }

  .lesson-section p {
    padding-left: 3em;
  }
}

@media only screen and (min-width: 1024px) {


}