/* Pied de page */
.footer {
    background-color: #222;
    color: white;
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
}

.footer a {
    text-decoration: none;
    color: #6BA9C7;
}

@media (max-width: 768px) {
    .footer p {
        font-size: 14px;
    }
}