html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000; /* 設置背景為黑色以匹配圖片 */
    color: #888888; /* 設置頁腳文字顏色 */
}

#main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url('main.jpg');
    background-position: center;
    background-repeat: no-repeat;
}

#footer {
    text-align: center;
    padding: 20px; /* 增加一些間距，避免文字太貼近底部 */
}