html,body {
    width:100vw;
    height: 100vh;
    margin: 0;
}
#StarTrek {
    position:fixed;
    z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
    #StarTrek {
        width:100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
    #StarTrek { 
        width:auto;
        height: 100%;
    }
}