/* Add a black background color to the top navigation */
.navigation {
  background-color: blue;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.navigation a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.navigation a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.navigation a.active {
  background-color: #04AA6D;
  color: white;
}





body {
	#background-image: url("Images/bg.png");
	#background-repeat: repeat;
	background-color: blue;
	font-family: Neucha, cursive, Veranda;
	font-size: 20px;
}
.middle {
	width: 60%;
	margin: auto;
	background: white;
}
.animation {
	position: relative;
	margin: 0 auto;
}
.bottom {
	position: absolute;
}
.top {
	animation-name: fade;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 1s;
	position: relative;
}
@keyframes fade {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}
section {
	width: 100%;
	padding-bottom: 10px;
}
section img {
	width:100%;
}
a {
	text-decoration: none;
}
table, td, th {
	text-align: left;
	border: 1px solid black;
	border-collapse: collapse;
}
tr:nth-child(even) {
	background-color: PeachPuff;
}
footer {
	width: 50%;
	padding: 8px;
	margin: auto;
}
.innersection {
	width: 70%;
	margin: auto;
}
ul {
	list-style-type: none;
	display: flex;
	justify-content: center;
	padding: 0px;
	margin: 0px;
}
li {
	width: 20%;
}
