footer,
.footer {
    background-color: var(--green);
    color: var(--foreground-green);
    padding: 32px;
    margin-top: 32px;
    text-align: center;
}

.footer .tittle {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer .designed-by {
    font-size: 0.9rem;
    margin-top: 8px;
    color: var(--foreground-green) !important;
}

.footer .designed-by a {
    color: var(--foreground-green) !important;
    text-decoration: underline;
}

.footer .links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.footer .info {
    border-bottom: 1px solid var(--foreground-green);
    margin-bottom: 16px;
    padding: 16px;
}

.icons {
    display: flex;
    align-items: center;
    gap: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}

@media screen and (min-width: 768px) {

    .footer {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer .links {
        flex-direction: column;
        align-items: start;
        gap: 8px;
    }

    .footer .links li {
        display: inline-block;
    }

    .footer .info {
        border-bottom: none;
        margin-bottom: 0;
        border-right: 1px solid var(--foreground-green);
        padding-inline: 16px;
        margin-right: 16px;
    }

}