* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}


div.container-fluid {

    /* border: black thin solid; */
    width: 100%;
    padding: 0;
    margin-left: 1rem;

}


/* Obere Navigation */
nav {
  
    width: 100%;
    margin: 0;

}


.nav-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    
    
}

.nav-link:checked {

 background-color:#3E7213;
}
/* Schriftfarbe der Links */
.nav-link,
.nav-link:checked {

    color: #224C00;
}

.nav-link:active {

    color: white;
   
}

li a {

    color: #609732;
}

.nav-link:hover {

    color: white;
}

.nav-link:focus {

    color: yellow;
     background-color:#3E7213;
}

/* Border Dividers - Randbegrenzungen */
/* Add a gray right border to all list items, except the last item (last-child) */
.navbar li {
    border-right: 1px solid #bbb;
}

li:last-child {
    border-right: none;
}

/* Submenu Dropdown */

ul.dropdown-menu {

    background-color: aqua;
}

ul.dropdown-menu li a:hover {

    background-color: chartreuse;
    color: darkgreen;
}

div.btn-group {
        display: flex;
    justify-content: center;
    align-content: center;
    text-align: left;
    vertical-align: middle;

    /* border: black thin solid;*/
}