body {
  overflow: hidden;
  font-family:  monospace;
  user-select: none;
}

video {
  /*display: none;*/
  visibility: hidden;
}

canvas {
  /*display: none;*/
  visibility: hidden;
}

div#drawing-container {
  position:  fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

div#drawing {
  margin:  0 auto;
  height:  100%;
}

div#image-modal {
  text-align: center;
  position: fixed;
  left: 50%;
  top: -650px;
  min-width: 400px;
  transform: translate(-50%, 0);
  z-index: 7;
  background-color: rgba(0,0,0,0.5);
  padding: 1em;
  font-size: 1em;
  padding: 82px 32px 64px 32px;
  border-radius: 2px;
  border: 2px solid rgba(240, 240, 240, 0.7);
  border-top:  none;
}

div#image-modal > div > svg {
  fill:  #FFF;
}

div#modal-caveat-1 {
  margin-top: 16px;
}

img#hidden-image {
  display: none;
}

.button-28 {
  appearance: none;
  background-color: transparent;
  border: 2px solid #EEE;
  border-radius: 2px;
  box-sizing: border-box;
  color: #EEE;
  cursor: pointer;
  display: inline-block;
  font-family: monospace;
  line-height: normal;
  outline: none;
  padding: 16px 0 8px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
  will-change: transform;
  fill: #EEE;
}

.button-28:disabled {
  pointer-events: none;
}

.button-28:hover {
  color: #333;
  background-color: #EEE;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-28:hover svg {
  fill:  #333;
}

.button-28:active {
  box-shadow: none;
  transform: translateY(0);
}