
body {
	padding-left: 20px;
	padding-right: 20px;
	background-color: HoneyDew;
}

/* Add a background color to the top navigation */
.topnav {
  background-color: PowderBlue;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a:link {
  float: left;
  color: Black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Style the links inside the navigation bar */
.topnav a:visited {
  float: left;
  color: Blue;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: DodgerBlue;
  color: Black;
}

/* Add a color to the active/current link */
.topnav a:active {
  background-color: GhostWhite;
  color: Green;
}

/* Add a background color to the top navigation */
.filenav {
  background-color: Khaki;
  text-align: center;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.filenav a:link {
  float: left;
  color: Black;
  text-align: center;
  padding: 8px 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

/* Style the links inside the navigation bar */
.filenav a:visited {
  float: left;
  color: Blue;
  text-align: center;
  padding: 8px 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

/* Change the color of links on hover */
.filenav a:hover {
  background-color: Plum;
  color: Black;
}

