/* 
* footer.css
*/

footer {
    /* position: absolute; */
    bottom: 0;
    z-index: 11;
    width: 100%;
    height: 100px;
    /* background-color: #F5F5F5; */
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    color: black;
    border-top: solid 1px #e0e0e088;
}

footer .footer_container {
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .info_footer {
    font-size: 1.1rem;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
}

footer .footer_links a {
    text-decoration: none;
    font-size: 1.1rem;
}
