footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    padding: 1rem 0;
    font-size: 12px;
    gap: 1rem;
}

.footer-top {
width: 100%;
height: fit-content;
display: flex;
}

.footer-top-left, .footer-top-right {
width: 50%;

}

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

.footer-top-nav ul {
    list-style-type: disc; /* Affiche des points */
  padding-left: 20px;    /* Ajoute un peu d'espace à gauche */
}

.footer-top-nav a {
    color: black;
    text-decoration: none;
}

.footer-top-nav a:hover {

    text-decoration: underline;
}

.footer-top-right {
   display: flex;
   flex-direction: column;
   align-items: center;

}

.footer-logo {
    height: 100px;
}

.footer-bottom {

}