@import "navbar.css";

    footer {
        background-color: #e6f7f7; /* Hellblauer Hintergrund passend zur Vorlage */
        padding: 20px;
        text-align: center;
    }

    footer .footer-links {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
    }

    footer a {
        text-decoration: none;
        color: #f28ca6; /* Rosa Schriftfarbe */
        font-size: 1rem;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: #d87a8e; /* Etwas dunkleres Rosa */
    }

    footer p {
        color: #333; /* Dunkelgrauer Text */
        font-size: 0.9rem;
        margin-top: 10px;
    }