html {
  min-height: 100%;
}
h1 {
  border-radius: 5px;
  border: grey 5px solid;
  color: #0ff;
  font-family: Anonymous Pro;
  text-align: center;
  background-color: grey;
  font-size: 200%;
  font-weight: bold;
}
strike{
  text-decoration:line-through;
}
body {
  background-color: #000;
  background-repeat: no-repeat;
}

table,tr,td {
  border-radius: 10px;
  border-collapse: collapse;
  padding: 10px;
  background-color: #0ff;
  margin: auto;
  color: #000;
}
div,a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: background-color .5s ease;
  transition: color .5s ease;
}

#content {
  float: left;
  width: 80%;
  border: grey 5px solid;
  border-radius: 5px;
  background-color: grey;
  color: #0ff;
  font-size: 130%;
  font-family: Anonymous Pro;
}

#navbar {
  float: right;
  border: grey 5px solid;
  border-radius: 5px;
  background-color: grey;
  margin-left: 10px;
  font-size: 120%;
  font-family: Anonymous Pro;
}

.NavStyle {
  color: #0ff;
  font-family: Anonymous Pro;
  font-size: 200%;
  font-weight: 700;
}

a:visited {
  text-decoration: none;
  color: #0ff;
}

.active {
  color: #0ff;
  font-weight: 700;
}

.copyright {
  animation-name: rainbow;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes rainbow {
  0% {
    color: red;
  }

  25% {
    color: #ff0;
  }

  50% {
    color: blue;
  }

  75% {
    color: green;
  }

  100% {
    color: red;
  }
}

/**/