/* 這裡是 CSS 樣式表 (style.css) */

/* 範例：讓 body 有個輕微的背景色，並使用無襯線字體 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    padding: 20px;
}

/* 範例：讓 h1 標題顏色深一點 */
h1 {
    color: #333;
}