a {
    color: aliceblue !important;
    text-decoration: none !important;
}
body {
    color: aliceblue;
    padding: 50px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    background: #181818;
}

img {
    margin: 0 0 50px 0;
}

video {
    margin: -50px 0 0 -50px;
    min-height: 100vh;
    min-width: 100vw;
    position: fixed;
    z-index: 1;
}

#intro {
    left: 0;
    max-height: 100vh;
    padding: 50px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* XS unter 576 */
/* SM Kleine Geräte (Tablets, 767px und kleiner) */
@media all AND (max-width: 767px) {
    body{padding: 0px;}
    img {margin: 0 0 30px 0;}
    video{margin: 0;}
    #intro {padding: 30px;}
}

/* MD Kleine Geräte (Tablets, 768px und breiter) */
@media all AND (min-width: 768px) AND (max-width: 991px) {
}

/* LG Mittlere Geräte (Desktop-PCs, 992px und breiter) */
@media all AND (min-width: 992px) AND (max-width: 1199px) {
}

/* XL Große Geräte (Desktop-PCs, 1200px und breiter) */
@media all AND (min-width: 1200px) AND (max-width: 1399px) {
}

/* XXL größergleich 1400px */
@media all AND (min-width: 1400px) {
}