#animation_container, #_preload_div_ {
	position:absolute;
	margin:auto;
	left:0;right:0;
  }

  body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            overflow: hidden; /* 禁止頁面滾動 */
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #000; /* 背景顏色 */
        }

        #animation_container {
            width: 100%;
            position: relative;
            overflow: auto; /* 允許動畫容器滾動 */
            max-height: 100%; /* 最大高度為視窗高度 */
            background-color: rgba(255, 255, 255, 1.00); /* 動畫容器背景顏色 */
        }
        #canvas {
            width: 100%; /* 寬度與視窗寬度對齊 */
            height: auto; /* 高度自動調整 */
            background-color: rgba(255, 255, 255, 1.00); /* 內部背景顏色 */
        }
        #dom_overlay_container {
            pointer-events: none;
            position: absolute;
            left: 0;
            top: 0;
        }

		#_preload_div_ {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }