html, body {
	margin: 0;
	height: 100%;
	background: transparent;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#player-container {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	background: transparent;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
[lang="nl-NL"] .video-finished #player-container {
    background-image: url(b_nl.svg) !important;
}
[lang="en-EN"] .video-finished #player-container {
    background-image: url(b_en.svg) !important;
}
[lang="fr-FR"] .video-finished #player-container {
    background-image: url(b_fr.svg) !important;
}
#vimeo-player {
	width: 100%;
	height: 100%;
	border: 0;
	background: transparent;
}

img {
    position: fixed;
    width: 50vw;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.video-finished img {
    opacity: 1;
}
.menu {
    color: #00b3ef;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    display: flex;
    gap: 10px;
    position: fixed;
    top: 50px;
    right: 50px;
    z-index: 100;
}
.menu li {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity:0;
    transition: opacity 0.5s ease-in-out;
}
.video-finished .menu li {
    opacity: 1;
}
.menu a.active {
    font-style: italic;
}
.menu li a {
    color: #00b3ef;
    text-decoration: none;
}
img.date {
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
}
img.musea {
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .menu {
        top: 20px;
        right: 20px;
    }
    img {
        width: 80vw;
    }
    img.date {
        top: 20px;
    }
    img.musea {
        bottom: 20px;
    }
}
@media (max-width: 480px) {
    .menu {
        top: 10px;
        right: 10px;
    }
    img {
        width: 95vw;
    }
    img.date {
        top: 10px;
    }
    img.musea {
        bottom: 10px;
    }
}
