@media (max-width: 768px) {

.mobile-container {
  max-width: 480px;
  margin: auto;
 
  color: black;
  border-radius: 10px;
}


.topnav {
 display:inherit;
  background-color: white;
  position: relative;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: #f80;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: #ff8800;
  color: white !important;
  display: block;
  position: absolute;
  right: 19px;
  top: -73px;
}

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

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

}