html,
body {
  height: 100%;
}
body {
  background-color: #eee;
  color: #444;
  /*
    font-family: "myriad pro", myriad, helvetica, arial, sans-serif;
    font-weight: 100;
    */
  font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11pt;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
a {
  color: #0099dd;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
footer {
  background-color: #222;
  color: #ccc;
  padding: 50px;
  text-align: center;
}
#title {
  font-size: 16pt;
  top: 100px;
  z-index: 150;
  left: 0;
  right: 0;
  position: absolute;
  -webkit-transform: translateZ(150px);
          transform: translateZ(150px);
  text-align: center;
}
#title h1 {
  font-size: 54pt;
  font-weight: 200;
  letter-spacing: -0.5px;
  margin: 0 0 20px 0;
}
#title p {
  width: 600px;
}
h2 {
  font-size: 24pt;
  font-weight: 200;
  margin-bottom: 24pt;
}
p {
  width: 480px;
  max-width: 100%;
  line-height: 160%;
  margin: 0 auto;
  opacity: .6;
}
#scene {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  -webkit-perspective-origin: 50% 50%;
          perspective-origin: 50% 50%;
  -webkit-perspective: 2000px;
          perspective: 2000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
#container {
  padding: 50px 0 250px 0;
  text-align: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.info {
  padding: 0 35px;
}
.display {
  margin: 0 -100%;
  display: inline-block;
  position: relative;
  background-color: #111;
  z-index: 100;
  border-radius: 20px;
  border-top: 10px solid #ccc;
  border-bottom: 120px solid #ccc;
  -webkit-transform: rotateX(-69deg);
          transform: rotateX(-69deg);
  /*Interestingly, using exactly 90 degrees seems to make the gifs not animate - perhaps this is some kind of performance thing...?
    (...based on an incorrect assumption that if an object is turned at exactly 90 degrees - completely edge-on - it's invisible, but that's not always true - it depends on where it's being viewed from!) */
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

}
/* Add shine - optional */
.display:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px 15px 0 0;
  background: linear-gradient(70deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 59.9%, rgba(255, 255, 255, 0.075) 60%, rgba(255, 255, 255, 0.35) 100%);
}
.screen {
  background-color: #fff;
  text-align: center;
  border-radius: 2px;
  width: 960px;
  max-width: 100%;
  height: 540px;
  margin: 40px;
}
.screen img {
  width: 960px;
  max-width: 100%;
  height: 540px;
}
