@charset "UTF-8";
/* CSS Document */

    img {
            position:absolute;
            margin:auto;
            top:0;bottom:0;left:0;right:0;
            max-width: 800px;
        }
    
    @media screen and (max-width: 640px) and (max-aspect-ratio: 1920/1200) {
        img {
            position:absolute;
            margin:auto;
            top:0;bottom:0;left:0;right:0;
            width: 100%;
        }
    }
    
    @media screen and (max-height: 400px) and (min-aspect-ratio: 1920/1200) {
        img {
            position:absolute;
            margin:auto;
            top:0;bottom:0;left:0;right:0;
            height: 100%;
        }
    }
	
	body {
			background-color: #000000;
        }