/*
 * =========================================================
 * Spore Core
 * Base Styles
 * =========================================================
 *
 * 只提供最基本的前端環境整理。
 * 真正的網站外觀由各頁面的自訂 HTML / CSS 決定。
 */


/* ---------------------------------------------------------
   Document Reset
   --------------------------------------------------------- */

html,
body {
    margin: 0;
    padding: 0;
}


/* ---------------------------------------------------------
   Box Model
   --------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}