#footer {
    width: 100%;
    background-color: var(--mycolor-black, black);
    padding: 1em 3em 0em 3em;
    color: var(--mycolor-white, white);
}

#footer h3 {
    font-size: 0.75em;
}

#footer p {
    font-size: 0.75em;
}

#footer--container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

.footer--content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-shrink: 0;
}


.footer--content .logo{
    width: 280px; /* width of facebook */
}



#copyright {
    padding: 2px;
    background-color: var(--mycolor-black, black);
    font-size: 0.75em;
    text-align: center;
    color: white;
}



/* TABLET navbar */
@media all and (max-width: 960px) {
    .footer--content .logo{
        display: none;
    }

    .footer--content {
        flex-shrink: 0;
    }
}

/* MOBILE navbar */
@media all and (max-width: 700px) {
    #footer {
        padding: 1em 1.5em 0em 1.5em;
    }
    
    #footer--container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
    }
    .footer--content{
        text-align: left;
        margin: 1em 0em;
    }

}