@import url('../css/base.css');

.myfooter {
    display: flex;
    flex-direction: row;
    height: 200px;
    background-color: var(--colore-primario);
    margin: 0;
    padding: 0;
}

.myfooter_element {
    display: flex;
    margin: 2% 2% 0 2%;
    width: 31.3%;
}

.myfooter_left {
    justify-content: flex-start;
}

.myfooter_left img {
    padding: 1%;
    height: 98%;
    width: auto;
}

.myfooter_right {
    align-items: end;
    justify-content: flex-end; /* Allinea il contenuto a destra */
    margin-right: 60px;
    gap: 20px;
}

.myfooter_center {
    justify-content: center;
    flex-direction: column;
}

.myfooter_center p {
    color: var(--colore-sfondo);
    font-variant: small-caps;
    text-align: center;
}

.myfooter_right a img {
    width: auto; /* Larghezza delle immagini */
    height: 40px; /* Altezza delle immagini */
}

.footer-bottom {
    background-color: var(--colore-primario);
    text-align: center;
    padding: 10px 0;
}

.footer-bottom p {
    color: white;
    font-size: 50%;
    margin: 0;
}