body {
  text-align: center;
  margin: 0;
  background: black;
  color: #404040;
  font-family: sans-serif;
  font-size: 10pt;
}
a {
  color: #F88113;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

#content {
  width: 960px;
  height: 560px;
  margin: 60px auto 20px auto;
  box-shadow: 0px 4px 16px -4px #333;
}

/* On small devices, fill the entire screen and hide the rest of the page. */
@media (max-device-width: 8in), (max-device-height: 8in) {
  html {
    /* Prevent scrollbars from causing a resize feedback loop. */
    overflow: hidden;
  }
  html, body {
    height: 100%;
  }
  #content {
    height: 100%;
    width: 100%;
    margin: inherit;
    box-shadow: none;
  }
  .no-mobile {
    display: none;
  }
}