.menu {
	margin-top: 10px;
	display: flex;
	background-color: rgb(69, 110, 88);
	color: white;
	cursor: pointer;
}

.menu a {
	color: white;
}

.grow1 {
	flex-grow: 1;
}

.menu .menuitem {
	padding: 8px;
}

.dropdown {
    position: relative;
    display: block;
}

.dropdown-content {
	margin-top: 8px;
    display: none;
    position: absolute;
    background-color: gray;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    white-space: nowrap;
    margin-left: -8px;
}

.dropdown-content a:hover {
	background: white;
	color: black;
}

.dropdown-content a {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
	padding-bottom: 8px;
    color: white;
    display: block;
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .drop-trigger {
	color: black;
}

.menuitem:hover {
	background-color: lightgray;
	color: black;
	text-decoration: none;
}

.menuitem:hover > a {
	background-color: lightgray;
	color: black;
	text-decoration: none;
}
