*{
  font-family: 'dosvga', sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  background: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
}

#canvasContainer {
  position: relative; 
  width: 100vh;
  height: 100vh;
  transform: scale(1); 
  transform-origin: top left;
}

canvas#rain {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute; 
  top: 0;
  left: 0;
  background: #000;
  z-index: 1;
}

#as,
#cg {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#bottomPanel{
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 28.75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#bottomPanel #mp,
#bottomPanel #lvl{
  font-weight: bold;
  font-size: 30px;
  color: #505050;
  margin-top: 3%;
}
#bottomPanel #lvl{
  padding-left: 21%;
  color: red;
}
#bottomPanel #mp{
  padding-left: 23%;
  color: white;
}

@font-face {
    font-family: 'dosvga';
    src: url('/content/021eda7f3343463de3721d6d6ee4f00391cf05b2e0ca255bfe9829d5f748129ai0') format('truetype');
}