.footer {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    width: 100%; 
    position: relative; /* Falls kein `absolute` oder `fixed` benötigt wird */
    padding: 20px 0; /* Abstand oben und unten für bessere Optik */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;

}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff7eb3;
}

.footer-copyright {
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Medienabfragen für kleinere Bildschirme */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 15px; 
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 10px;
    }

    .footer-links {
        gap: 10px; 
    }

    .footer-links a {
        font-size: 0.9rem;
    }
    #footer {
        max-width: 350px;
    }
}
