/* ドットフォント */
@font-face {
    font-family: "DotFont";
    src: url("k8x12.ttf") format("truetype");
}

/* 全体 */
body {
    background-color: black;
    color: white;
}

/* タイトル */
h1 {
    font-family: "DotFont";
}

/* 更新情報 */
.info {
    font-family: "DotFont";
    font-size: 16px;
}

/* リンク */
a {
    color: white;
}

a:visited {
    color: white;
}

a:hover {
    color: yellow;
}