.menu {
    position: absolute;
    top: 0;
    left: -250px; /* Verbergt het menu */
    width: 250px;
    height: 100%;
    background: #ff00d0;
    color: white;
    transition: left 0.3s ease; /* Animatie voor het menu */
    z-index: 10;
}

.menu-open {
    left: 0; /* Toont het menu */
}

.menu ul {
    list-style-type: none;
    padding: 0;
}

.menu ul li {
    padding: 15px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
}
