*{
    padding: 0%;
    margin: 0%;

}

#game-container{
  width:100vw;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}
#game-container canvas {
  display: block;
}
body {
  height:100vh;

    background: url("assets/bg-dot.svg") black;
    color: white;
    display: grid;
    grid-template-rows: auto auto;
    scroll-behavior: smooth;
    margin: 0;
   animation: bg-anim 15s linear infinite;
    font-family: 'Times New Roman', Times, serif;
}
@keyframes bg-anim {
   
    0% {
    background-position: 0px 0px;
  }
  25% {
    background-position: 200px 100px;
  }
  50% {
    background-position: 400px 200px;
  }
  75% {
    background-position: 200px 100px;
  }
  100% {
    background-position: 0px 0px;
  }
}
* {
    user-select: none;
    overflow-anchor: none;
}
a {
    text-decoration: none;
    color: white;
}
@keyframes zoom-in {
    0% {
        scale: 1;
    }
    100% {
        scale: 1.1;
    }
}
@keyframes zoom-out {
    0% {
        scale: 1.1;
    }
    100% {
        scale: 1;
    }
}

::-webkit-scrollbar {
    display: none;
}
* {
    scrollbar-width: none;
    
}
#mobile {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
     background: url("assets/bg-dot.svg") black;
    animation: bg-anim 15s linear infinite;
    color: #00ff88;
    font-family: monospace;
    z-index: 999999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}

@media print {
    * {
        display: none !important
    }
}
@media (max-width: 768px) {
    #mobile { display: flex; }
    #game-container { display: none; }
    body { display: block; }
}