body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    background-color: black;
    color: white;
    font-weight: bold;
    padding: 15px;
    margin-top: auto;
    font-size: 12pt;
}

.container_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.desc_footer {
    max-width: 400px;
    display: flex;
    font-style: italic;
    align-items: center;
    line-height: 25px;
}

.container_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    margin-left: 50px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}

.info {
    display: flex;
    align-items: center;
    width: 100%;
}

.info i {
    width: 20px;
    height: 20px;
    margin-right: 30px;
}

#logo_footer {
    width: 250px;
    margin-left: 50px;
}

.links a {
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 1030px) {
    .container_footer {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .desc_footer {
        text-align: center;
    }

    .links {
        text-align: center;
    }

    #logo_footer {
        margin-left: 0px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}