@charset "utf-8";
/* CSS Document */
* { margin: 0px; box-sizing: border-box ; }
/* Like a rest */

div {background-color: aqua;}
/* Makes the background aqua */

div.head{background-color: black; color: white; font-size: 40pt; text-align: center; padding-bottom: 10px; padding-top: 10px  }
/* Makes the headline white, on a black background, centered, 40pt and padded */

div.nav {text-align: center; font-size: 20px; padding-top: 10px; padding-bottom: 20px }
/* This is the menu bar */

div.column	{ float: left ; height: 300px }
/* This is the overall style for the two columns*/

div.side { width: 20%; }
/* Column on left with lions logo is 20% of page*/

div.main { width: 80%;}
/* Column with story and photo are 80% of page*/

div.footer{ clear: both; background-color: black; color: white; text-align: center; padding-bottom: 10px; padding-top: 10px }
/* Footer at the bottom of the page.*/