@charset "utf-8";

/* CSS Document */

 :root {
    --aktuell: #A9F9A9;
}
/*
header {
    background-color: green;
    font-size: 2rem;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    color: #BEF37C;
}
*/

nav#nav_on-design {
    background-color: #78d778;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: center;
}

nav ul a {
    display: inline-block;
    width: 9rem;
	border-radius:2em;
    padding: 10px 0;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
    color: green;
}

nav ul a:hover {
    background-color: green;
    color: #78d778;
}

nav li ul {
    display: none;
    position: absolute;
    background-color: transparent; /*var(--aktuell);*/
	background-color: var(--aktuell);
}

nav li:hover ul,
nav li:focus-within ul {
    display: block;
    background-color: transparent; /*aqua;*/
}

.aktuell {
    background-color: transparent; /*var(--aktuell);*/
	background-color: var(--aktuell);
}


/*---------checkbox burger menue--------------*/

#checki {
    display: none;
}

nav>label {
    display: none;
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--aktuell);
}
	#checki~ul {
		display: none;
	}
	#checki:checked~ul {
		display: flex;
	}
@media screen and (max-width: 800px) {
    nav>label {
        display: inline-block;
    }
    #checki~ul {
        display: none;
    }
    #checki:checked~ul {
        display: block;
    }
    nav li ul {
        display: block;
        position: static;
        font-size: 0.8rem;
        background-color: var(--aktuell);
    }
    nav ul li:not(.aktuell) ul {
        display: none;
        text-align: center;
    }
    nav ul a {
        width: 100%;
        margin: 2px;
    }
}