.zoom-fade-image {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: zoomFade 2.5s ease-in-out forwards;
}

@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    70% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.menu {
    position: fixed;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 20px;

    display: flex;
    flex-wrap: wrap; 
    max-width: 90vw; 
    padding: 10px; 
}

.menu-item {
    padding: 10px 10px;
    /* width: 128px; */
    background-color: #1b1b1b;

    color: #ffff00;
    text-decoration: none;
    font-variant: small-caps;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 5px;
    transition: background-color 0.3s, opacity 0.5s ease-in-out;
    white-space: nowrap;
}

.menu-item:hover {
    background-color: #480808;
}

/* Nieuwe regels voor de bullets */
/* .menu-item:not(.last)::after {
    content: "●";
    margin-left: 20px;
    color: #333; 
    */

.js .menu-item {
    opacity: 0;
}