﻿:root {
    
}

/*.....................Elemente.....................*/
html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: rgba(56, 80, 89, 0.05) !important;
}

/* Sicherstellen, dass das Header-Element einen höheren z-index hat */
header {
    position: relative;
    z-index: 20;
}

/*..................................................*/


/*.....................Klassen......................*/
.header-container {
    padding-left: 5em !important;
    padding-right: 3em !important;
}

.navbar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    display: none;
}

.navbar-toggler {
    filter: invert(100%);
}

.nav-link {
    color: rgba(255,255,255, 0.5) !important;
    font-weight: 300 !important;
}
    .nav-link.active {
        color: rgba(255,255,255, 1) !important;
    }
    .nav-link:hover {
        color: rgba(255,255,255, 0.8) !important;
    }

/*..................................................*/


/*.....................Id's.........................*/

/* Standardmäßiges Styling für den zusammenklappbaren Teil der Navigation */
#navbarSupportedContent {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 10;
    background-color: #212529;
    transition: ease 0.3s;
    padding-left: 5em !important;
    padding-right: 3em !important;
}

/*..................................................*/


/*.....................Scrollbar....................*/

/*..................................................*/


/*...................Media Querrys..................*/

@media (min-width: 768px) {
    #navbarSupportedContent {
        position: static;
        width: auto;
    }
}

/*..................................................*/
