html {
    background: linear-gradient(to bottom, #ffecd2, #fcb69f);
}


body {
    background: rgba(255, 255, 255, 0.2) url('jsbgb.png');
    /* 使用圖片背景 */

    background-size: cover;
    /* 確保圖片覆蓋背景 */
    background-blend-mode: overlay;
    /* 改變融合模式 */
    background-attachment: fixed;
    /* 固定背景圖 */
    background-position: center;
    /* 背景圖片置中 */
}