header{
    width: 100vw;
    background-color: black;
    background: linear-gradient(0deg, rgba(23,23,23,1) 0%, rgba(41,41,41,1) 40%, rgba(0,0,0,1) 100%);
    height: var(--headerHeight);
    position: fixed;
    z-index: 10000;
}
a{
    text-decoration: none;
}

#headerNav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5px 30px;
}

#Imagottype{
    display: flex;
    align-items: center;
    justify-content: start;
}
#Imagottype:hover g,#Imagottype:hover .Logo{
    fill: var(--lightLavender);
    color: var(--lightLavender);
    transition: all 250ms ease-in-out;
}

#Isotype{
    width: 60px;
    height: auto;
}
#Isotype g{
    transition: all 250ms ease-in-out;
}

.Logo{
    font-family: var(--orbitron);
    font-size: 25px;
    transition: all 250ms ease-in-out;
}
.LogoMain{
    color: var(--pink);
    margin-left: 10px;
}
.LogoSecond{
    color: var(--lightBLue);
}

#hamburger{
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}
#hamburger #hamburgerSVG{
    width: 40px;
    height: auto;
    fill: var(--lightGrey);
    transition: all 250ms ease-in-out;
}

#headerMenu{
    display: none;
    background-color: black;
    color: var(--lightGrey);
    position: absolute;
    right: 50px;
    top: var(--headerHeight);
}


/*Smaller Devices*/
@media screen and (max-width: 380px) {
    .Logo{
        display: none;
    }
}
@media screen and (max-width: 780px) {
    #Isotype{
        width: 50px;
    }
    .Logo{
        font-size: 22px;
    }
}