#i {
  display: table;
  margin: 0 auto;
}

#o {
  width: 100;
}

body {
  background-color: #181410;
  color: #0096ff;
  font-size: large;
  font-family: monospace;
  -webkit-animation: glow 5s ease-in-out infinite alternate;
  -moz-animation: glow 5s ease-in-out infinite alternate;
  animation: glow 5s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    /* #cc7300 #995600 #663a00 #331d00 */
    text-shadow: 0 0 2px #005ebf, 0 0 3px #00419d;
  }
  to {
    text-shadow: 0 0 2px #005ebf, 0 0 5px #00419d;
  }
}

a:link {
  color: #0096ff;
  font-weight: bold;
  text-decoration: none;
}

a:visited {
  color: #0096ff;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #0096ff;
  font-weight: bold;
  text-decoration: none;
}

a:link {
  color: #0096ff;
}

.hover-show {
  visibility: hidden;
}

a:hover .hover-show {
  visibility: visible;
}
