ul {
  margin: 0;
  padding: 10px 10px;
  overflow: hidden;
}

li {
  display: inline;
  float: left;
}

li a {
  display: block;
  color: black;
  background-color: gray;
  text-align: center;
  padding: 10px 10px;
}

li a:hover:not(.active) {
  background-color: red;
}

.active {
  background-color: orange;
  color: blue;
}

body {
     background-color: black;
     color: white;
}

h4 {
     text-align: left;
     margin: 20px 20px
     color: white
}

p {
     text-align: left;
     margin: 25px 20px;
     color: white;
}
.logout {
	background:linear-gradient(to bottom, #768d87 5%, #6c7c7c 100%);
	background-color:#768d87;
	border-radius:5px;
	border:1px solid #566963;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:12px 24px;
	text-decoration:none;
}
.logout:hover {
	background:linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
	background-color:#6c7c7c;
}
.logout:active {
	position:relative;
	top:1px;
}