html {
  background-color: #111;
}
html, body, #wrapper {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
h1,h2,h3,h4,h5 {
  color: #fff;
  font-family: "Noto Mono", "Courier New", Courier, monospace;
}
.image {
  -webkit-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.image:hover {
  -webkit-transform:scale(1.3);
  -ms-transform: scale(1.3);
  transform:scale(1.3);
}
.button {
  -webkit-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  transition: all 1.2s ease;
  background-color: #222;
  border: none;
  color: #ddd;
  padding: 4px 8px;
  text-align: center;
  display: inline-block;
  margin: 2px 1px;
  cursor: pointer;
}
.button:hover {
  background-color: #111;
}
#wrapper td {
  text-align: center;
}
a:link, a:visited, a:hover, a:active {
  color: #fff;
  text-decoration: none;
}
