html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body 
{
  background-color: #000000;
  font-family: 'Montserrat', sans-serif;
  color: #111;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}


#maintable {
  position: absolute;
  left: 0;
  top: 50%;
  padding: 0 20px;
  width: 100%;
  text-align: center;
}
.centerbox
{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#canvas {
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

#title {
  display: table-cell;
  vertical-align: middle;
  z-index: 999;
}

#title h2 {
  color: #fff;
  font-size: 45px;
  font-family: "museo-slab";
}

#title h3 {
  color: #fff;
  font-size: 25px;
  font-family: "museo-sans";
  font-weight: 300
}

#canvasbg {
  z-index: -10;
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  filter: blur(3px);
  opacity: 0.6;
}