/* Standard-Styling für die Navigation */
#mobile-show {
   display: none;
}

.navigation li {
	display: inline;
	margin-right: 10px;
}

/* Media Query für mobile Geräte */
@media only screen and (max-width: 680px) {
	/* Verstecke den Navigationspunkt auf mobilen Geräten */
	#mobile-show {
		display: inline;
	}
}