@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,latin-ext);
@import url(http://fonts.googleapis.com/css?family=Play:700);
html, body {
  width: 100%;
  height: 100%;
  display: table;
}
 
body {
  background-color: #000;
  font-size: 100%;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  display: table-cell;
  vertical-align: middle;
}
 
h1 {
  font-family: 'Play', sans-serif;
  font-size: 2em;
  margin: 0 0 10px 0;
  letter-spacing: 3px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
 
a {
  color: #09f;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid;
  -webkit-transition-property: border-bottom-color, color;
  -webkit-transition-duration: .2s;
  transition-property: border-bottom-color, color;
  transition-duration: .2s;
  line-height: 1em;
}
a:not(:hover) {
  border-bottom-color: transparent;
}
a:hover {
  color: #33adff;
}
 
table {
  margin: 0 auto;
  border: 3px solid #333;
  border-collapse: collapse;
  max-width: 100%;
}
table td {
  padding: 3px;
}
table td:nth-child(1) {
  width: 55%;
  text-align: left;
}
table td:nth-child(2) {
  width: 30%;
}
table td:nth-child(3) {
  width: 15%;
}
table td:not(:last-child) {
  border-right: 1px solid #333;
}
table thead tr {
  border-width: 2px 0;
}
table thead tr th {
  font-weight: bold;
  border-bottom: 3px solid #333;
}
table thead tr th a {
  border-radius: 3px;
  padding: 4px;
  border: 0;
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: .2s;
  transition-property: background-color, color;
  transition-duration: .2s;
}
table thead tr th a:hover {
  color: #fff;
  background-color: #33adff;
}
input {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 0px;
  border: solid 1px #dcdcdc;
  transition: box-shadow 0.3s, border 0.3s;
}
input:focus,
input.focus {
  border: solid 1px #202070;
  box-shadow: 0 0 5px 1px #202096;
}