/* Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Background */
body {
    background: url('afbeelding.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Container */
.container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Logo */
.logo {
    position: absolute;
    top: 40px;
    left: 60px;
}

.logo img {
    width: 400px;
    max-width: 70vw;
}

/* Video */
.video-wrapper {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    width: 420px;
    max-width: 80vw;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.6);
}

.video-wrapper iframe {
    width: 100%;
    height: 236px;
    border: 0;
}

/* Counter */
.counter {
    position: absolute;
    bottom: 40px;
    left: 60px;
    color: white;
    font-size: 28px;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* Anniversary effect (bigger, but still white) */
.counter.anniversary {
    font-size: 40px;
    font-weight: 400;
    color: white;
    text-shadow: 0 0 20px rgba(255,255,255,0.6);
}

/* Mobile */
@media (max-width: 768px) {

    .logo {
        top: 20px;
        left: 20px;
    }

    .logo img {
        width: 250px;
    }

    .video-wrapper {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .video-wrapper iframe {
        height: 200px;
    }

    .counter {
        left: 20px;
        bottom: 20px;
        font-size: 20px;
    }

    .counter.anniversary {
        font-size: 26px;
    }
}
