/* —————————— CSS引用 */
@import "responsive.css";
@import "tool.css";
@import "post.css";

/* —————————— CSS变量定义 */
:root {
    /* 颜色变量 */
    --color-0: rgba(0, 0, 0, .2);
    --color-1: #ededed;
    --color-2: #fff;
}

/* —————————— 重置基础样式 */
a {
    text-decoration: none;
}

/* —————————— 自定义样式 */
body {
    background-color: var(--color-1);
    line-height: 1.6;
    font-size: 16px;
}

#header-top {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
}

#header-top h1 {
    margin: 0;
}

footer {
    color: var(--color-0);
}