@font-face {
    font-family: 'Funnel Sans';
    font-style: normal;
    font-weight: 400;
    src: url(/data/Funnel-Sans.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
    background-size: auto;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
    font-family: 'Funnel Sans';

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

hr {
    background-color: transparent;
    color: transparent;
    height: 0;
    border-radius: 5px;
}

hr.slim {
    opacity: 0.5;
    border-width: 1px;
}

.seperator {
    margin-bottom: 50px;
}

.hide {
    opacity: 0;
}

h3 {
    text-shadow: 0 0 10px rgba(255,255,255,0.7);
}

.sidebarLink {
    margin-left: -19px;
    transition: margin-left ease-in-out 0.2s;
    text-decoration: none;
}

.headlineLink {
    margin-left: -20px; 
    transition: margin-left ease-in-out 0.2s;
    text-decoration: none;
}

.sidebarLink:hover, .headlineLink:hover, .sidebarLink:focus-visible, .headlineLink:focus-visible {
    margin-left: 0;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    transition-duration: 0.2s;
    z-index: 4;
}

.headfoot {
    height: 100px;
}

.headerScroll {
    width: 100%;
    top: 0;
    height: 50px;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.headerContainer {
    height: 100%;
    width: 1250px;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition-duration: 0.2s;
}

.logoImg {
    border-radius: 5px;
    height: 90px;
}

.logoImgScroll {
    height: 45px;
}

.globalNav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 27.5px;
    border-radius: 1000px;
    overflow: hidden;
    transform: rotate(0deg);
    transition: transform 0.2s ease-in-out;
}

.globalNavFocus, .globalNav:hover {
    transform: rotate(180deg);
    cursor: pointer;
    outline: none;
}

.navStripesWrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    height: 70.7107%;
    width: 70.7107%;
}

.navStripes {
    width: 100%;
    height: 15%;
    transform: rotate(0deg);
    transition-duration: 0.4s;
    border-radius: 5px;
}

.stripeTop {
    position: absolute;
    transform: rotate(45deg);
}

.stripeMiddle {
    position: absolute;
    opacity: 0;
}

.stripeBottom {
    position: absolute;
    transform: rotate(-45deg);
}

.globalFlyout {
    position: fixed;
    opacity: 1;
    width: 100%;
    height: calc(100vh - 100px);
    margin-top: 100px;
    z-index: 3;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: margin-top 0.2s ease, height 0.2s ease, opacity 0.5s ease;
}

.globalFlyoutScroll {
    height: calc(100vh - 50px);
    margin-top: 50px;
}

.globalFlyoutTransition {
    opacity: 0;
}

.globalFlyoutHidden {
    display: none;
}

.navContainer {
    display: flex;
    width: 1250px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    font-size: 25px;
    font-weight: 600;
    transition: margin-top 0.4s ease-out;
}

.navContainerHidden {
    margin-top: -150px;
}

.navWrapper {
    position: relative;
    width: 1.3em;
    height: 150px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.navElement {
    position: absolute;
    height: 0;
    width: 0;
    bottom: 0;
    transform: rotate(-90deg);
    transition-duration: 0.5s;
}

.navWrapperFocus .navElement {
    transform: rotate(0deg);
    transition-delay: 0.2s;
}

.navSubElement {
    visibility:hidden;
    opacity: 0;
    min-width: 125px;
    font-size: 20px;
    font-weight: 400;
    background-size: 300%;
    background-position: 0%;
    border-radius: 5px;
    transition: opacity 0.2s ease-in-out 0.6s, background-position 0.5s ease-in-out;
}

.navWrapperFocus .navSubElement {
    visibility:visible;
    opacity: 1;
}

.navSubElement:hover {
    cursor: pointer;
    background-position: 75%;
}

.contentWrapper {
    width: 1250px;
    margin: auto;
    margin-top: 120px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content {
    padding: 2%;
    border-radius: 5px;
    transition-duration: 0.2s;
    width: 70%;
}

aside {
    width: 20%;
    transition-duration: 0.2s;
}

nav.content {
    width: 100%;
    overflow-x: hidden;
}

.leftWrapper {
    position: sticky;
    top: 55px;
}

.imgWrapper {
    border-radius: 1%;
    padding: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.imgWrapper > img {
    border-radius: 1.1%;
}

.mainImg {
    float: right;
}

input, button {
    background-color: rgba(0,0,0,0);
    padding: 2px;
    border-radius: 5px;
    transition-duration: 0.2s;
}

input:hover, input:focus, input:focus-visible, button:hover, button:focus, button:focus-visible {
    outline: none;
    cursor: pointer;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1250px) {
    .contentWrapper {
        width: 100%;
        justify-content: space-between;
    }
    .headerContainer {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .logoImg{
        display: none;
    }
    main {
        width: 100% !important;
    }
    nav {
        top: 0;
    }
    aside {
        display:none;
    }
}

::-webkit-scrollbar {
    width: 0.5vw;
}

.schreck {
    display: none;
    transition: color 5s ease, background-color 5s ease;
}

.schreckShow {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.testElement { /* -- not affected by colorchange -- */
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;;
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #000;
    color: white;
    transition-duration: 0.2s;
}