body {
  /* margin: 30; */ /* Margin is the area outside the border of an HTML element. */
  padding: 40px;   /* Padding clears a transparent area around the content */
  background-color: Azure;  /* Background color is Azure, #F0FFFF */
  color: MidnightBlue;   /* default text color for page is MidnightBlue, #191970  */   
  font-family: Verdana, Arial, Helvetica, sans-serif;
  /*font-size: 100%;  100% of the default browser font size */ 
  font-size: 1.1em;  /* Font size in Em allows user to resize text. */
  /* border-style: solid; */
}

.header {  /* Style the class named header */
  background-color: Azure;
  /* border-style: solid; */
  /* padding: 10px; */
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 40px;
  padding-left: 0px;
  text-align: left;
}

/* Style the pseudo-classe, which styles certain states of an element */
 a#Logo {  /* Style the unique id selector named Logo */
 font-size: 2.9em;  /* Font size in Em allows user to resize text. */
 font-weight:bold;
}
 /* unvisited link */
 a#Logo:link {
  color: MidnightBlue; 
}
 /* visited link */
 a#Logo:visited {
  color: MidnightBlue; 
}
 /* mouse over link */
 a#Logo:hover {
  color: #feab6b; 
}
 /* selected link */
 a#Logo:active {
  color: blue;
} 

#Bible_header {  /* Style the unique id selector named Bible_header */
  color:MidnightBlue;
  font-size: 1.5em;  /* Font size in Em allows user to resize text. */
  font-weight:bold;
  font-style: italic;
  padding-left: 80px; 
}

#div_Lessons {  /* Style the unique id selector named div_Lessons */
  text-align: center;
  /* border-style: solid; */
}

#List_Lessons {  /* Style the unique id selector named List_Lessons */
  display: inline-block;
  text-align: left;
}

.footer {  /* Style the class named footer */
  background-color: Azure;
   /* border-style: solid; */
  /* padding: 10px; */
  padding-top: 40px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  text-align: right;
}





