@charset "utf-8";
/* CSS Document */

#navbar {
  overflow: hidden;
 background: #2A2A2A;
  padding: 8px 5px;
  transition: 0.4s;
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 98;
}

#navbar a {
  float: left;
  color: white;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 13px; 
  line-height: 10px;
  border-radius: 4px;
	font-weight: bold;
}

#navbar #logo {
  font-size: 20px;
  font-weight: bold;
  transition: 0.4s;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
}

#navbar a.active {
  background-color: dodgerblue;
  color: white;
}

#navbar-right {
  float: right;
}

#myLinks{
	display: none;
}

@media screen and (max-width: 700px) {
#navbar {
   
	 display: none;
  }
.topnav {
  overflow: hidden;
  background-color: #2A2A2A;
 position: fixed;
  width: 100%;
  top: 0px;
  z-index: 99;
	opacity: 90%;
	
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 15px;
  display: block;
	font-weight: bold;
}

.topnav a.icon {
  background: #2A2A2A;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}
}
