@font-face {font-family: "Pixelar";
    src: url("/assets/fonts/pixelar.eot"); /* IE9*/
    src: url("/assets/fonts/pixelar.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("/assets/fonts/pixelar.woff2") format("woff2"), /* chrome、firefox */
    url("/assets/fonts/pixelar.woff") format("woff"), /* chrome、firefox */
    url("/assets/fonts/pixelar.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
    url("/assets/fonts/pixelar.svg#Pixelar Regular W01 Regular") format("svg"); /* iOS 4.1- */
}

body {
    cursor: url('/assets/img/arrow.png'), default;
}

a {
    cursor: url('/assets/img/pointer.png'), pointer;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    background: #000;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Pixelar';
    font-size: 20px;
}

.bg {
    height: 100%;
    overflow: hidden;
}

.bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.75);
}

.container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(185, 185, 185);    
}

.container pre {
    white-space: pre;
    font-size: 16px;
    font-family: monospace;
    margin: 1em 0px;
}

.container a {
    color: rgba(96, 170, 255, 0.726);
    text-decoration: none;
    font-size: 24px;    
}


@media (max-width: 780px) {
    .container pre {
        font-size: 12px;
    }
}


@media (max-width: 360px) {
    .container pre {
        font-size: 10px;
    }
}