/* 平成初期風のスタイル定義 */
body {
  background-color: #000000;
  color: #00ff00;
  /* ネオン系の緑 */
  font-family: "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  text-align: center;
}

a:link {
  color: #00ffff;
}

/* 未訪問リンク：シアン */
a:visited {
  color: #ff00ff;
}

/* 訪問済リンク：マゼンタ */
a:hover {
  color: #ffff00;
}

/* ホバー：イエロー */

/* 枠線とテーブル */
.main-table {
  border: 2px ridge #00ff00;
  width: 650px;
  margin: 20px auto;
  padding: 10px;
  background-color: #111111;
}

.counter {
  color: #ff0000;
  background-color: #000000;
  border: 1px inset #777777;
  padding: 2px 8px;
  font-family: "Courier New", monospace;
  font-weight: bold;
}

.blink {
  animation: blinker 1s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
}

@keyframes blinker {
  from {
    opacity: 1.0;
  }

  to {
    opacity: 0.0;
  }
}

hr {
  border: 0;
  border-top: 1px dashed #00ff00;
}
