/*Basic Nav*/
#NavigationBar{
    position: fixed;
    width: 100%;
    height: 50px;
    background-color: var(--accentcolor);
    z-index: 100;
    top: 0;
}

.NavigationText{
    text-decoration: none;
    display: inline-block;
    float: right;
    margin-top: 12.5px;
    margin-left: 70px;
    margin-right: 50px;
    width: 120px;
    color: var(--foreground);
    font-weight: bold;
    text-align: center;
    font-size: 17.5px;
}

.Banner{
    width: 100vw;
    height: 15vw;
    text-align: center;
    background: center;
    background-size: cover;
    background-image: none !important;
    position: fixed;
    top: 50px;
    z-index: 99;
}

/*Skew*/
.YellowSkew{
    width: 100vw;
    height: 13vw;
    background-color: var(--accentcolor);
    transform: skewY(-4deg);
    margin-top: -4vw;
    position: absolute;
}

.BannerTekst{
    color: var(--background);
    padding-top: 0vw;
    font-size: 5vw;
    font-weight: bold;
    position: relative;
    text-align: left;
    margin-left: 5vw;
}

/*Switcher*/
#switcher{
    width: 40px;
    height: 40px;
    z-index: 100;
    float: right;
    margin-top: 5px;
    margin-right: 5px;
    position: relative;
}

#switcher>div{
    background-color: var(--background);
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 8px;
    transition: all 1s;
    transform-origin: center;
    border-radius: 1.5px;
}

#sw1{
    transform: translate(-20px, -20px);
}

#sw2{
    transform: translate(-20px, -4px);
}

#sw3{
    transform: translate(-20px, 12px);
}

#sw1.anim{
    transform: translate(-20px, -4px) rotateZ(45deg);
}

#sw2.anim{
    transform: translate(-4px, -4px);
    width: 8px;
}

#sw3.anim{
    transform: translate(-20px, -4px) rotateZ(-45deg);
}

#navanim{
    overflow:hidden;
}

#navanim>div{
    right: -900px;
    transition: all 1s;
    position: relative;
}

#navanim.anim>div{
    right: 0px;
}

/*Footer*/
.Footer {
    width: 100%;
    height: 50px;
    background-color: var(--accentcolor);
    z-index: 100;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.Footer>div{
    color: var(--foreground);
    font-size: 0.75vw;
}