
@font-face{
    font-family: "Droid Sans Mono";
    src: url("../font/droid-sans-mono.ttf");
}

@font-face{
    font-family: "Monitorica";
    src: url('../font/Monitorica/Monitorica-BdIt.ttf'),

}

#main_canvas{
    width: 100%;
    height: 100%;
}

body::-webkit-scrollbar {
    width: 0px;
}



.wrapProgress{
    z-index: 999999999999999999999;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #000;
} 

#progressBar{
    height: 40px;
    width: 0vw;
    background: #fff;
    display: flex;
    position: absolute;
}

#progressBar p{
    display: inline-block;
    color: #000;
    text-align: center;
    margin: auto 20px;
    font-family: "Droid Sans Mono";
}

#progressBar p span{
    animation: loading 1s infinite ease-in-out;
    opacity: 0;
}

@keyframes loading {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
