
/* Footer */
footer {
    background-color: lightgray;
    padding: 20px 0;
    text-align: center;

}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-text {
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007BFF; /* Optional: Hover-Farbe */
}

