/* Zorgt ervoor dat de footer altijd onderaan blijft */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1; /* Duwt de footer naar beneden als er weinig content is */
}

/* Footer */
.footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    
    margin-top: 100px; /* Zorgt ervoor dat de footer altijd onderaan blijft */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    display: inline;
    margin: 0 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}
