* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}
body {
  color: #333333;
  background-attachment: fixed;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.7s;
}
body {
  /* 画像ファイルの指定 */
  background-image: url(bg_dark.jpg);
   
  /* 画像を常に天地左右の中央に配置 */
  background-position: center center;
   
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
   
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
   
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;
   
  /* 背景画像が読み込まれる前に表示される背景のカラー */
  background-color: #464646;
}
main {
    display: table;
  width: 100vw;
  height: 100vh;
}
.center {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  text-shadow: 1px 0 6px #000;
  font-weight: bold;
}
.center p {
  font-size: 20px;
}
.center h1 {
  font-size: clamp(3rem, 1rem + 6.67vw, 6rem);
}
.article {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  background: #fff;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  width: 100%;
  background: #001c4b;
  color: hsl(0, 0%, 100%);
  font-size: 12px;
  text-align: center;
}

