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

body {
    overflow: hidden;
}

#noscript {
    position: fixed;
    background: #fff;
    width: 100vw;
    height: 100vh;
    text-align: center;
    top: 0;
    left: 0;
    z-index: 999;
}

#noscript p {
    position: absolute;
    width: 100%;
    padding: 15px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}