/* 確保 body 和 html 佔滿整個視窗 */
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body.main-body {
    background: linear-gradient(rgb(255, 249, 237) 0%, rgb(68, 162, 186) 100%);
    color: white;
    text-align: center;
    font-size: 1.2em;
    font-family: 微軟正黑體, "Microsoft JhengHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 24pt;
    height: 953px;
}

/* 主要內容區域 */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #393b5b;
    font-size: 1.5em;
    font-weight: bold;
}

.content span.desp {
    color: #232323;
    font-size: .8em;
    font-weight: normal;
    font-family: 微軟正黑體, "Microsoft JhengHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* 圖片的樣式 */
.content img {
    max-width: 100%;
    height: auto;
}

/* Footer 固定在頁面底部 */
.footer {
    background-color: transparent;
    padding: 10px;
    text-align: center;
}

.footer-text {
    color: #333333;
}
