*{
    margin: 0px;
    padding: 0px;
    text-decoration: none;
}
html {
    height: 100%;
    background-color: rgb(1, 1, 1);
    
}
body {
    height: 100%;
}
nav{
    width: 100%;
    min-height: 5em;    
    background-image:linear-gradient(to top, rgb(0, 0, 0), rgba(6, 171, 89, 0.624));
    display: inline;
    justify-content: space-between;    
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;

}
.menu-Button {
    position: absolute;
    top: 0.2em;
    right: 0.5em;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: auto;
    height: 3em;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
    cursor: pointer;
}
.nav-logo {
    margin: 0.5em;
    font-size: 1.875em;
    font-family: sans-serif;
    font-style: italic;
    color: aliceblue;
}
nav ul {
    display:inline-flex;
}
nav ul li {
    height: 100%;
    list-style-type: none;
    padding: 0.75em;
    border-bottom: 0.125em solid rgba(107, 5, 5, 0);
}
nav ul li:hover {
    color: yellowgreen;
    background-color: red; 
    border-bottom: 0.125em solid yellowgreen;
}
nav ul li a{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5em;
    color: bisque;
    text-align: center;
    border-bottom: 0.125em solid rgba(107, 5, 5, 0);
}

@media(max-width:25em){
    .links-container{
    display: none;
    width: 100%;
    }
    .menu-Button{
        display: flex;
       
    }
    nav {
    flex-direction: column;
    align-items: flex-start;
    }
    .links-container ul{
    flex-direction: column;
    width: 100%;
    }
    .links-container li{
    text-align:center ;
    }
    .links-container.active{
    display: flex;

    }
}

#footbar {
    padding-top: 1em;
}
.iconbar-background {
    margin-top: 0em;
    max-height: 5em;
    position: fixed;
    left:0;
    bottom:0;
    width: 100%;
    background-color: rgba(9, 19, 27, 0.323);
}
.iconbox {
    display: flex;
    justify-content: center;    /* horizontal zentriert  */
    align-items: center;
}
.iconbox a{  
    margin: 1em 1em;
}
.iconbox img{
    max-width: 3em;
    height: auto;
    cursor: pointer;
    -moz-clip-path: inset(0px 0px 0px round 8px);
}
.iconbox a:hover{
    filter: drop-shadow(0 0 24px  #49e4ff)
    brightness(200%);
    transition: 100ms;
}