@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

:root {
  --header-height: 71px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Share Tech Mono', monospace;
  scroll-behavior: smooth;
}

.page-container {
    min-height: 100%;
}

#game-container #rotate-overlay {
  position: fixed;
}

canvas#gameCanvas {
  display: block;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: calc(100vh - var(--header-height, 100px));
}
canvas#gameCanvas.fullscreen {
  height: 100vh !important;
  width: 100vw !important;
}

/* SCROLLBAR (desktop) */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: #000;
}
body::-webkit-scrollbar-thumb {
  background: rgba(0,255,0,0.2);
  border-radius: 4px;
}
body:hover::-webkit-scrollbar-thumb {
  background: rgba(0,255,0,0.6);
}



#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;    
  background: #000; 
}
