/* =====================================
   Henry Hauck Website
   Cassiopeia Henry_2
   ===================================== */

/* Hintergrund */
body {
    background: #28345a;
}

/* Menüleiste */
.container-header {
    background: rgba(36, 52, 90, 0.85);
}

/* Menü zentrieren und Abstand */
.container-header .mod-menu {
    justify-content: center;
    gap: 2rem;
}

/* Links im Menü etwas tiefer */
.container-header .mod-menu a {
    padding-top: 7px;
    padding-bottom: 7px;
}

/* Video */
video {
    display: block;
    width: 105%;
    max-width: none;
    height: auto;
    margin: 20px auto;
    margin-left: -2.5%;
}
/* Desktop / Mobile Videos */

.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

@media screen and (max-width: 768px) {

    .desktop-video {
        display: none !important;
    }

    .mobile-video {
        display: block !important;
        width: 100%;
        height: auto;
    }
}