.topnav {
  overflow: hidden;
  background-color: #333;
  
}

.topnav a {
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  padding: 14px 16px;
}

.topnav div{
	float: right;
	display: block; 
	padding: 14px 16px;
}

.topnav a:hover {
  color: cyan;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

.topnav a{
	text-align: center;
	
}

.navigation{
	background-color: #333;
}
.navigation h4{
	float: left;

}
@media screen and (max-width: 800px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
  
  .topnav a{
	  text-align: center;
	  
  }
  
  .navigation h4{
	  display: none;
  }
  
}

}