body {
  background-color: none;
  margin: 0;
  padding: 0;
  /* leave it to hide the scrollbars */
  overflow: hidden;
  text-align: center;
}

svg {
  height: 100vh;
  width: auto;
}

#sizeSelect {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#backgroundModal {
  z-index: 9998;
  top: 0;
  left: 0;
  position: fixed;
  background: #1b1f23c7;
  height: 100vh;
  width: 200vw;
  overflow: hidden;
}

#renderingText {
  position: fixed;
  z-index: 9999;
  /* top: calc(50% - 50px); */
  left: 50%;
  transform: translateX(-50%);
  font-weight: 800;
  color: white;
  font-family: 'Courier New', Courier, monospace;
}

#renderingTextWarning {
  position: fixed;
  z-index: 9999;
  top: calc(50% + 50px);
  left: 50%;
  transform: translateX(-50%);
  font-weight: 800;
  color: rgb(255, 255, 255);
  font-family: 'Courier New', Courier, monospace;
}