body,
html {
  margin: 0;
  background-color: rgba(30, 30, 30, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

main {
  flex: 1; 
  align-items: center;
  justify-content: center;
}

canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: scale-down;
  margin: auto;
  overflow: auto;
}

#loading-gif {
  display: block; 
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 15%;
  max-height: 15%;
  object-fit: scale-down;
  z-index: 1;
}