﻿@charset "UTF-8";
/* CSS Document */


#flower-canvas {
 position: fixed;
    top: 0;
    left: 0;
    width: 100vw;  /* 使用視窗寬度 */
    height: 100vh; /* 使用視窗高度 */
    pointer-events: none; /* 必加：讓滑鼠可以穿過畫布點擊按鈕 */
    z-index: 1; /* 設為最高，確保在所有圖片和文字上方 */
    display: block;
}

.container{
       z-index: 99; 
}
