body {
  background: 
    linear-gradient(rgba(0, 150, 255, 0.5) 10%, rgba(0, 0, 0, 0)),
    radial-gradient(rgb(70, 220, 255) 50%, rgb(0, 180, 255));
}
p {
  color: rgb(0, 0, 0);
}
h1 {
  font-weight: bold;
  text-align: center;
  border-bottom-style: double;
  border-top-style: double;
  background: linear-gradient(rgba(0, 255, 255, 0.6), rgba(0, 150, 255, 0.3));
  text-shadow: -2px 3px rgba(0, 60, 140, 0.5);
  font-size: 32px;
}
h3 {
  text-shadow: -1px 2px rgb(20, 80, 150);
}
.title {
  font-size: 25px;
  text-shadow: -1px 2px rgb(20, 80, 150);
  text-align: center;
}
h {
  font-size: 22px;
  text-shadow: -1px 2px rgb(20, 80, 150);
}
.
.left {margin-left: 100px;}
.balance{
  margin-left:100px;
  margin-right:100px;
}
.update {
  float: right;
  font-style: italic;
  font-size: 13px;
}
.logo {
  background: linear-gradient(rgb(0, 150, 255), rgb(0, 200, 255), rgb(0, 160, 255));
  margin-right: auto;
  margin-left: auto;
  display:block;
  border-bottom-style: dotted;
  border-top-style: dotted;
}
.indent {margin-left: 20px;}
a {
  text-decoration: none;
}
a.bottom:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
a.bottom
{
  position: relative;
  text-shadow: none;
}
a.bottom:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(0, 100, 255);
  visibility: hidden;
  transform: scaleY(0);
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: rgb(0, 20, 255);
}