footer {
    margin-top: auto;
    width: 100%;
}

#Footer {
    display: flex;
    flex-direction: column;
    background-color: rgb(42, 42, 42);
    color: white;
    font-size: 1em;
    padding: 0 6vw 0 6vw;
    z-index: 100;
}

a {
    color: white;
}

a:hover {
    color: rgb(179, 6, 6);
    text-decoration: none;
}

#FooterTop {
    height: 50px;
    width: 100%;
    background-image: url('high-bar.png');
    background-repeat: repeat-x;
}

#FooterMid {
    display: none;
}

#FooterBot {
    display: flex;
}

#FooterBot div {
    display: flex;
    flex: 1 1 0;
}

#FooterBot .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#FooterBot .left * {
    margin: 0;
}

#FooterBot .mid {
    justify-content: center;
}

#FooterBot .mid img {
    width: 400px;
    margin: 3vh 0 3vh 0;
    -webkit-filter: drop-shadow(0 0 1px rgba(255, 255, 255, 1));
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 1));
}

#FooterBot .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

#FooterBot p {
    margin: 0 4px 0 4px;
}


@media screen and (max-width:1200px) {
    
    #FooterBot {
        flex-direction: column;
        font-size: 3vw;
    }

    #FooterBot .left {
        align-items: center;
        padding-top: 2vh;
    }

    #FooterBot .right {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 2vh;
    }

    #FooterBot .mid img {
        width: 60vw;
    }
}