#footer{
    display: flex;
    flex-wrap: wrap;

    width: 100%;

    z-index: 20;

    position: fixed;
    bottom: 0;
}

#footerDiv{
    z-index: 20;
    display: flex;

    align-items: start;
    justify-content: space-between;

    width: 100%;
    height: var(--footerSize);

    background: var(--footerColor);
    border-top: 1px solid black;
}

#footerLinks{
    z-index: 20;
    align-content: center;

    width: auto;
    height: 100%;

    font-size: 2vh;
    padding-left: 20px;
}

#footerLink:hover{
    font-weight: bold;
}

#facebooka{
    margin-right: 15px;
    margin-top: 2vh;
}

#facebooksvg{
    width: 4vh;

    background: white;
    border-radius: 50%;
    border: solid 1px white;
    transition: scale 0.2s;
}

#facebooksvg:hover{
    transition: scale 0.2s;
    scale: 1.2;
}