* {
    margin: 0;
    padding: 0;
    text-align: center;
}
html {
    font-size: 20px;
}
body {
    background-color: #000;
    overflow: hidden;
}
#phaser canvas {
    margin-left: auto !important;
    margin-right: auto !important;
}
#adminIframe {
    width: 100vw;
    height: 1050px;
    position: absolute;
    top: 1050px;
    left: 0;
    z-index: 1001;
    border: none;
}

#adminBackground {
    width: 100vw;
    height: 100vh;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
}

#blockMessageBg {
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .8);
    z-index: 900;
    pointer-events: none;
}

#blockMessage {
    width: 100vw;
    height: 25vh;
    position: absolute;
    top: 75%;
    left: 0;
    z-index: 901;
    transform: translateY(-50%);
    border-top: 1rem solid red;
    border-bottom: 1rem solid red;
    color: red;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.6rem;
    padding: 1rem;
    box-sizing: border-box;
    pointer-events: none;
    text-transform: uppercase;
    text-shadow: 0 0 red;
}

#blockMessageImg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    max-width: 15vw;
}

@media (max-width: 1600px) {
    html {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 14px;
    }

    #blockMessage {
        font-size: 1.6rem;
    }
}