.menu {
	display: flex;
	background-color: #444;
	/* background-image: url("../img/hintergrund.jpg");  */
	padding: 0px;
	margin: 0px;
}

/* wagerechtes Menü */
.menu-item {
    position: relative;
    list-style: none;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    font-size: medium;
}

@media (max-width:980px){ 
	.menu-item {  font-size: x-large; }
}

.menu-item:hover {
	background-color: #555; /* #666; */
}

/* senkrechtes Menü */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 5px;
    background-color: #DDDEE0; /* #666; */
    min-width: auto; /* 180px; */
    /* z-index: 1; */
    list-style-type: none; /* none = Kreise als Aufzählungszeichen werden nicht angezeigt */
    padding-left: 5px; /* Abstand der Schrift vom linken Rand */
}

/* senkrechtes Menü soll - als Aufzählungszeichen enthalten */
/* fügt einen Bindestrich vor dem Text ein */
/* ul.dropdown li::before { content: "- "; } */

/* senkrechtes Menü */
.dropdown-item {
    padding: 2px;
	margin: 2px;
    color: white;
    border-top: 1px solid #FFF;
}

/* senkrechtes Menü */
.dropdown-item:hover {
	background-color: #DDDEE0; /* #888; */	
}

.menu-item:hover .dropdown {
	display: block;
}