body {
  overflow: hidden;
  margin: 0;
  background-color: black;
  height: 100vh;
  font-family: Consolas, Monaco, monospace;
}

#overlay {
  color: white;
  z-index: 1;
  position: fixed;
  bottom: 0;
  height: auto;
  text-shadow: 2px 2px black;
  margin: 8px;
}

.button {
  font-size: large;
  border-radius: 3px; 
  padding: 3px;
}

#controls {
  position: absolute;
  top: 0;
  height: auto;
  margin: 8px;
}

#running {
  background-color: green;
  color: white;
  display: none;
}

#paused {
  background-color: red;
  color: white;
  display: none;
}

#image-url {
  background-color: black;
  color: white;
  outline: solid white 1px;
  height: 2em;
  display: inline-block;
  width: 60em;
  overflow: hidden;
}

a {
  color: unset;
}

canvas#video {
  object-fit: cover;
  width: 100%;
  cursor:pointer;
}