/* Footer by Texy */


/* Color Background */

footer{
    background-color: var(--dark-blue);
}

#bottom-bar {
    background-color: var(--white-sand);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    padding: 30px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

footer .footer-left,
footer .footer-right {
    display: flex;
    flex-direction: column;
}

footer .footer-left {
    align-items: flex-start;
}

footer .footer-right {
    align-items: flex-end;
}

footer .footer-left a, 
footer .footer-right a {
    margin: 5px 0;
    color: var(--light-blue);
    text-decoration: none;
    text-transform: uppercase;
}

footer .footer-left a:hover,
footer .footer-right a:hover {
    text-decoration: underline;

}

footer .footer-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Bottom Bar */
#bottom-bar {
    background-color: var(--white-sand);
    color: var(--black);
    text-align: center;
    padding: 10px 0;
    text-transform: uppercase;
}


