/* ----------------------------------------------------------------------
-- style.css
------------------------------------------------------------------------*/
html, body      { width: 100%; height: 100%; }
div#stage       {
    position: relative; top: 0; left: 0;
    width: 100%; height: 100%;  
}
img.background {
        /* Set rules to fill background */
        min-height: 100%;
        min-width: 1024px;

        /* Set up proportionate scaling */
        width: 100%;
        height: auto;

        /* Set up positioning */
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
}
@media screen and (max-width: 1000px) { /* Specific to this particular image */
    img.background {
        left: 50%;
        margin-left: -500px;   /* 50% */
    }
}

img#bg  { display: none;}

#enter {position: absolute; height: 293px; width: 292px; z-index: 20; bottom: 50px; right: 80px;}
