
*{
  padding: 0;
  margin: 0;
  border: 0;
  word-break: break-word;
}
*,*:before,*:after{
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,:active{outline: none;}
a:focus,a:active{outline: none;}


nav,footer,header,aside{display: block;}

html,body{
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
}


input,button,textarea{font-family: inherit; }



input::-ms-clear{display: none;}
button{cursor: pointer;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size: inherit;font-weight: inherit;}

body{
  height: 100vh;
  height: 100dvh;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background-color: #000000;

  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
main{
  flex: 1 1 auto;
}
#app {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
}
/* canvas{
  width: 800px!important;
  height: 400px!important;

  max-width: 100%;
  max-height: 100%;
} */
.isMobile canvas{
  width: 100%!important;
  height: 100%!important;
}

.loader {
  width: 120px;
  height: 22px;
  border-radius: 40px;
  color: #ffffff;
  border: 2px solid;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.loader::before {
  content: "";
  position: absolute;
  margin: 2px;
  width: 25%;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  background: currentColor;
  animation: l3 1s infinite linear;
}
.modal{
    position: fixed;
    background-color: #0404049b;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: opacity 0.2s;
    pointer-events: none;
    opacity: 0;
}

.modal.active{
    opacity: 1;
    pointer-events: all;
}
@keyframes l3 {
    50% {left:100%;transform: translateX(calc(-100% - 4px))}
}