/**
credits for the video go to : https://slicejack.com/fullscreen-html5-video-background-css/
 */
.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
   /* z-index: -100;*/

   /* z-index: 10000; */
    z-index:0;

    /* background-color: black; */
    /* width: 100px; */
    /* height: 100px; */
    position: fixed;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}

/*@media (max-width: 767px) {
    .fullscreen-bg {
        background: url('../mp4/video-0.png') center center / cover no-repeat;
    }

    .fullscreen-bg__video {
        display: none;
    }
}
*/
/**
end slicejack code
 */


/**
poor quick n dirty fast at night
 */

#wrapper {
    z-index:auto;

}

.posts article h2,.posts article h3 {
    text-align:left;
}

ul.m-elements, ul.index, ul.glossary {
    list-style:none;
    text-align:left;
}

article.legal ul li p {
    margin:0;
}

#main >  .posts > article.legal {
    padding: 4rem;
    width: 100%;
}