html, body {
    padding: 0;
    margin: 0;
		visibility: hidden;
		background-color:white;
}

main {
	text-align: center;
	width: 100%;
}

canvas {
	visibility: visible;
	object-fit: contain;
  position: absolute;
  max-height: 100%;
  max-width: 100%;
	min-height: 100%;
  min-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	
}
