body {
    background-color: var(--maincolor2) !important;
    margin: 0px;
    padding: 0px;
    width: 100%;
    
    overflow-x: hidden;
    font-family: "Be Vietnam Pro", sans-serif !important;
}

a { 
    color: black;
    text-decoration: none;
}

a:hover {
    font-weight: bold;
}

/*I Frames*/

.inframe {
    margin-top: 100px;
    width: 100%;
    height: 91vh;
    margin-bottom: 0px;
}

.topspacer {
    display: flex;
    width: 100%;
    height: 100px;
}

.Iframebox {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    max-height: 91vh;
}


/*all dropdown content*/






#sidebarMenu {
    height: 100%;
    position: fixed;
    left: 0;
    width: 250px;
    margin-top: 50px;
    transform: translateX(-250px);
    transition: transform 250ms ease-in-out;
    background: var(--maincolorinvers);
    
}
.sidebarMenuInner{
    height: 95vh;
    overflow-x: auto;
    margin:0;
    padding:0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li{
    list-style: none;
    color: #000000;
    text-transform: uppercase;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebarMenuInner li span{
    display: block;
    cursor: auto;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}
.sidebarMenuInner li a{
    color: #000000;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    background-color: transparent !important;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 42.5px;
    left: 25px;
    height: 22px;
    width: 22px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #000000;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}

 


/*Animations*/

        @keyframes moveaway {
            0%{margin-right: 0px;opacity: 100%;}
            50%{margin-right: 200px;opacity: 0%;}
            100%{margin-right: 0px;opacity: 100%;}
        }

        @keyframes colorchange {
            0% {filter: brightness(0) saturate(100%) invert(13%) sepia(90%) saturate(4988%) hue-rotate(9deg) brightness(87%) contrast(125%);scale: 1;}
            33% {filter: brightness(0) saturate(100%) invert(54%) sepia(92%) saturate(6359%) hue-rotate(11deg) brightness(98%) contrast(105%);}
            50% {scale: 1.1;}
            66% {filter: brightness(0) saturate(100%) invert(70%) sepia(86%) saturate(5754%) hue-rotate(11deg) brightness(110%) contrast(99%);}
            100% {filter: brightness(0) saturate(100%) invert(13%) sepia(90%) saturate(4988%) hue-rotate(9deg) brightness(87%) contrast(125%); scale: 1;}
        }



        @media (max-width: 1920px) {
            .titelpicture {
                width: 800px;
            }
            .sidebarMenuInner li span{
                display: block;
                font-size: 20px;
                color: rgba(255, 255, 255, 0.50);
            }
        
            a {
                font-size: 15px;
            }
            .sidebarMenuInner li{
                padding: 10px;
            }
        
        }
        
        @media (max-width: 600px) {
            .titelpicture {
                width: 300px;
            }
            .sidebarMenuInner li span{
                display: block;
                font-size: 13px;
                color: rgba(255, 255, 255, 0.50);
            }
        
            a {
                font-size: 10px;
            }
            .sidebarMenuInner li{
                padding: 10px;
            }
            
        
        }