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

main {
  display: flex;
  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;
  filter: drop-shadow(0.33rem 0.33rem 0.33rem rgba(0,0,0,0.15));
  z-index: 1;
}