﻿@charset "UTF-8";

/* リセット（最低限） */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ページ全体 */
html, body {
  height: 100%;
}

body {
  background-color: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN",
               "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

/* サイト全体を包むコンテナ */
.site-container {
  width: 750px;
  margin-right: auto;margin-left: auto;word-break: normal;} /* 中央寄せ */
  a:link {color: deepskyblue}
  a:visited { color: blueviolet}
}

/* 例：ヘッダー・メイン・フッターの基本 */
header,
main,
footer {
  width: 100%;
}
