body {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 10px;
  line-height: 1.5em;
  background-color: #000;
  color: #fff;
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

#circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 50%;
  background-color: yellow;
  opacity: 0.25;
}
