:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  --dkClr: #181818;
  --liClr: whiteSmoke;
  --accClr: #0D0D35;
}
  
html, body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #ff0033;
}

header, footer {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#gameCanvas { 
  display: flex;
  justify-content: start;
  align-items: center;
  flex: 1;
  width: 100%;
  height: 100%;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 0vh;
  overflow: auto; /* Enable scrolling */
  scrollbar-width: none; /* Firefox */
}

main::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
