* {
    margin: 0px;
    padding: 0px;
    font-family: roboto;
    font-weight: 300;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

html,body{
    overscroll-behavior-y: contain;
}

html {
    background-color: rgba(0, 50, 150, 0.9);
    color: rgba(255, 255, 255, 0.8);
    height: 100%;
}

body {
    height: 100%;
}

canvas {
    image-rendering: optimizespeed;
    image-rendering: pixelated;
}

.canvas-horizontal-centerer{
    display: flex;
    justify-content: center;
    flex-direction: row;
    width:100%;
}

.canvas-vertical-centerer{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width:100%;
    height:100%;
    position: fixed;
}

#performance {
    position: fixed;
    top: 0;
    right: 0;
    color: rgba(0,255,255,0.6);
    background-color:black;
    padding:5px;
}
#performance>p{
    font-weight: bold;
}

#tps{
    color: rgba(255,255,0,0.6);
}

::-webkit-scrollbar {
    width: 10px;
    height: 0px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.20);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:active {
    background-color: rgba(0, 0, 0, 0.60);
}

*:focus {
    outline: none;
}

*:link,
*:visited {
    color: white;
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

::-moz-placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

input[type=text],
input[type=password],
input[type=email],
input[type=number] textarea {
    cursor: text;
}

input[type='button'],
input[type='submit'],
a[href] {
    cursor: pointer;
}
