body {
    margin: 0;
    padding: 0;
    background-color: black;
}

body > a {
    display: none;
}

#game-container {
    position: absolute;
    width: 100vw;
    height: 100vh;

    /* Fallback for android without flexbox support */
    display: -webkit-box;

    display: flex;
    justify-content: center;
    align-items: center;
}
#game-container.has-page-footer {
    /* include space for footer banner and text */
    height: calc(100vh - 110px - 38px);
    width: calc(100vw - 20vw);
    padding: 0 10vw;
}

.page-footer {
    width: 100vw;
    text-align: center;
    position: absolute;
    bottom: 0;
    display: none;
}

.footer-text {
    color: white;
    text-shadow: 0 0 2px black;
    margin: 0;
    text-align: center;
    /* max-height: 18px; */
    padding-bottom: 2px;
    font-size: 14px;
    line-height: 14px;

    & p {
        margin: 0;
    }
}

.footer-link {
    color: white;
}
.footer-link:visited {
    color: white;
}

.is-visible {
    display: initial;
}
.is-hidden {
    display: none;
}

.dirty-angels-iframe {
    margin: 0;
    border: 0;
    width: 580px;
    height: 100px;
    user-select: none;
}

.body-background canvas {
    box-sizing: border-box;
    border: 4px solid white;
    border-radius: 4px;
}

.page-side-banner {
    position: absolute;
    left: 0.5vw;
    top: 10vh;
    z-index: 1;
}
.page-side-banner:hover {
    cursor: pointer;
}
.page-side-banner a {
    display: block;
}
.page-side-banner a img {
    width: 9vw;
}

/* Please rotate */

#pleaserotate-backdrop {
    position: absolute;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.95);
}

#pleaserotate-backdrop img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
