/* Ogre Factory */

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
    --omfg-bg-image: url("omfgdogs.gif");
    --omfg-bg-image-retina: url("omfgdogs@2X.gif");
}

body {
    background-image: var(--omfg-bg-image);
    margin: 0;
    padding: 0;
    font: 12px/32px monospace;
    min-height: 100vh;
}

a { color: rgba(255, 216, 0, 1); }

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 32px;
    overflow: hidden;
    background-color: rgba(0,0,0,0.8);
    color: #EEE;
    z-index: 10;
}

#footer a {
    color: #EEE;
}

#footer-left {
    float: left;
    padding-left: 20px;
}

@media only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
    body { background: var(--omfg-bg-image-retina); background-size: 384px 80px; }
}

video.centre {
    display: block;
    margin: 40px auto;
    max-width: 80%;
    height: auto;
    box-shadow: 0 0 10px black;
}
