html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    /*background: transparent;*/
}

html {
    height: 100vw;
    width: 100vh;
    /* background: url("../images/bg.jpg") no-repeat center; */
    /* background-size: cover; */
    background-color: #06001a;
    /* touch-action: manipulation; */
    overflow: hidden;
}

body {
    width: 100vw;
    height: 100vh;
}

.gameContainer {
    background-color: #06001a;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.progress-loader {
    max-height: 360px;
    max-width: 360px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.ball {
    position: relative;
    background-color: rgb(4, 0, 61);
    border: 5px solid rgba(0, 183, 229, 0.9);
    opacity: 0.9;
    border-top: 5px solid rgba(0, 0, 0, 0);
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-radius: 180px;
    box-shadow: 0 0 35px #2187e7;
    width: 360px;
    height: 360px;
    margin: 0 auto;
    box-sizing: border-box;
    animation: spin 0.5s infinite linear;
}

.ball1 {
    /* position: absolute; */
    background-color: rgba(0, 0, 0, 0);
    border: 5px solid rgba(0, 183, 229, 0.9);
    opacity: 0.9;
    border-top: 5px solid rgba(0, 0, 0, 0);
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-radius: 165px;
    box-shadow: 0 0 15px #2187e7;
    width: 330px;
    height: 330px;
    margin: 0 auto;
    position: relative;
    top: -345px;

    box-sizing: border-box;
    animation: spinoff 0.5s infinite linear;
}

.loadingText {
    /* position: relative; */
    position: absolute;
    top: 50px;
    right: 0;
    bottom: 0;
    left: 45px;
    /* width: 323px; */
    /* height: 300px; */
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinoff {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#test {
    /* position: relative; */
    position: absolute;
    top: 0px;
    left: 0;
    width: 300px;
    height: 300px;
    background-color: rgb(229, 255, 0);
}
