body {
  background-color: #000000;
  overflow: hidden;
  margin: 0px;
}

iframe {
  background-color: #000000;
}

#view {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

#background {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: #000000;
}

#background table {
  width: 100%;
  height: 100%;
}

#background td {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

#logo {
  animation: rotating 10s infinite;
  -webkit-animation: rotating 10s infinite;
  -moz-animation: rotating 10s infinite;
  -ms-animation: rotating 10s infinite;
  -o-animation: rotating 10s infinite;
}

/* Standard */
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  6% {
    transform: rotate(45deg);
  }
  12% {
    transform: rotate(0deg);
  }
}

/* Firefox < 16 */
@-moz-keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

#error {
  position: absolute;
  bottom: 0px;
  right: 0px;
  color: #333333;
  font-family: sans-serif;
}

#info-dialog {
  position: absolute;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  font-family: sans-serif;
  padding: 16px;
}

#info-dialog h1 {
  margin-top: 0;
  font-size: 48px;
}

#info-dialog th,
#info-dialog td {
  text-align: left;
  padding-right: 24px;
  font-size: 32px;
}
