html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}


canvas {
  display: block;
  position: fixed;
  bottom: 5px;
  left: 5px;
  border-radius: 10px;
  
}

#label {
  position: fixed; 
  left: 50%;
  top: 50%;
  height: auto;
  font-size: 100px;
  font-weight: bold;
  background-color: #eee;
  color: #000;
  border-radius: 10px;
  padding: 20px 50px;
  font-family: 'Helvetica neue', Helvetica, sans-serif;
  // not breacking words
  white-space: nowrap;
  transform: translate(-50%, -50%);
  /* display: none; */
}

#label-container {
  /* display: none; */
  padding: 5px;

}

#movie {
  position: fixed;
  left: 330px;
  bottom: 5px;
  height: 240px;
  border-radius: 10px;
  display: none;

}