
  * {
	box-sizing: border-box;
	margin: 0;
	padding:0;
  }
  h1{
	  text-align: center;
  }
  p
  {
    text-align: left;
    font-size: 20px;
    padding: 10px;
  }
  table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  
  tr:nth-child(even) {
    background-color: #dddddd;
  }
  section
  {
    background-color: #f1f1f1;
    min-height: 600px;
    height: auto;
    padding: 5px;
  }

  article
  {
      height: auto;
  }
  
  body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: black;
  }
  
  #Page
  {
	  margin: 0px 100px 0px 100px;
  }
  /* Style the header */
  header {
	background-color: red;
	color: white;
	background-size: auto;
    height: auto;
    width: 100%;
  }
  
  nav
  {
	  width: 100%;
	  height: 100px;
    background-color: indigo;
    position: sticky;
    top: 0px;
  }
  nav img
  {
    float: right;
  }

    ul li
  {
	list-style: none;
	float: left;
	display: inline-block;
  line-height: 100px;
  position: relative;

  }
  ul li a
  {
	display: block;
	text-decoration: none;
	font-size: 14px;
	color: lime;
  padding: 0 10px;
  }
  ul li a:hover
  {
	color: white;
  }
  ul li:hover ul {
    display: block;
  }
  ul li ul {
    display: none;
    position: absolute;
    background-color: indigo;
    padding: 5px;
  }
  ul li ul li a
  {
    width: 325px;
  }
  
  /* Clear floats after the columns */
  section:after {
	content: "";
	display: table;
	clear: both;
  }
  
  /* Style the footer */
  footer {
	background-color: red;
	padding: 10px;
	text-align: left;
  }
  
  /* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
