body {
	display: flex;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	font-family: Roboto;
    background-color: darkgray;
}

.main {
	margin-left: auto;
	margin-right: auto;
	width: 90%;
    background-color: white;
}

.toolbar {
	max-height: 50px;
	max-width: 1024px;
	
	flex: 1;
	display: flex;
	overflow: hidden;
	margin-bottom: 10px;
    justify-content: left;
    align-items: center;
}

.custom-logo-link img {
    max-height: 50px;
    height: auto;
    width: auto;
}

/****************************** MENU Styles */

.menu {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}

.menu LI:hover {
    background-color: lightgray;
}

ul.menu > li > a {
    display: block;   /* macht das <a> Block-Level-Element */
    width: 100%;      /* füllt den gesamten Bereich des <li> */
    height: 100%;     /* optional, wenn das <li> eine definierte Höhe hat */
    padding: 10px 20px; /* sorgt für Klickbereich */
}

.menu A {
    text-decoration: none;
    color: black;
}

UL.menu, UL.sub-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sub-menu {
    display: none;
    min-width: 150px;
    position: absolute;
    background: #fff;
    border: 1px solid black;
	
}

.sub-menu .sub-menu {
	left: 95%;
	top: 10px;
}
.sub-menu LI {
	padding: 5px;
}

.menu li:hover > .sub-menu {
    display: block;
}

.logo img {
	height: 50px;
}

.header {
	height: 150px;
	background-image: url("./header2.jpg");
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
	align-items: center;
	align-content: top;
	padding: 20px;
	color: #004175;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.content {
	height: calc(100vh - 400px);
	overflow: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
    
	padding-bottom: 50px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}



