@charset "UTF-8";

#nav {
  background-color: #EEE;
  height: 20%;
  padding:0;
  margin:0;
}

h2 {
  text-align:center;
  font-family: "Abel";
  font-size: 28px;
  padding-top:0.5%;
  padding-bottom:0.5%;
  margin: 0;
  text-decoration: none;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li:last-child {
  border-left: black;
  border-right:none;
}


li a {
  display: block;
  text-align: center;
  padding: 14px 20px;
  color: #EEE;
  font-style: normal;
  font-family: "Abel";
  font-size: 15px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: Grey;
}

.active {
  background-color: #000;
}
footer {
  display: flex;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  margin-top: 15px;
}
#logout {
	border: solid 3px black;
	background-color: #333;
	color: white;
	text-decoration: none;
	position: fixed;
	right: 0;
	margin-right: 5px;
}