/*Styled alles in der Navigation*/
body {
    width: 1440px;
    margin: 0;
}

.NAV {
    display: flex;
    height: auto;
    width: 1440px;
    background-color: #D1FFDB;
    font-family: arial;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 100;
	cursor: pointer;
}

.EBENE1, .EBENE2 a {
    display: block;
    line-height: 50px;
    text-indent: 1rem;
    text-decoration: none;
    font-family: arial;
	cursor: pointer;
}

.EBENE1 {
    height: auto;
    width: 150px;
    background-color: transparent;
    color: #0B4518;
    position: relative;
    z-index: 101;
	cursor: pointer;
}

.EBENE1:hover {
    background-color: #D1FFDB;
    color: #0B4518;
	cursor: pointer;
}

.EBENE2 {
    display: none;
    width: 150px;
    position: absolute;
    height: auto;
    background-color: #D1FFDB;
    z-index: 102;
	cursor: pointer;
}

.EBENE2 a:hover {
    background-color: #0B4518;
    color: white;
	cursor: pointer;
}

.EBENE1:hover > .EBENE2 {
    display: block;
	cursor: pointer;
}