@import './gui.css';
@import './loader.css';
* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    touch-zooming: none;
    -ms-touch-zooming: none;
}

div {
    display: block;
}

canvas {
    position: fixed;
    touch-action: none;
    width: 100%;
    height: 100%;
}

.canvas-wrapper {
    height: 100%;
    /* display: flex; */
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

html,
body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

#clockContainer {
    text-align: right;
    color: white;
    margin: 0;
    padding: 0;
    top: 0;
    right: 38px;
    background-color: #2B3236;
    position: absolute;
    z-index: 1000000;
    user-select: none;
}

#game-root {
    overflow: hidden;
    touch-zooming: none;
    -ms-touch-zooming: none;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    transform: none;
    max-width: 100vw;
    height: 100%;
    transform: scale(1, 1);
}

.alert {
    z-index: 1000;
}


