* {
  margin: 0;
  padding: 0;
}

body {
  background: url("bg.png");
  background-size: contain;
}

#videoLocale {
  border: 5px solid black;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 30%;
  height: auto;
  display: block;
  z-index: 999;
}

#videoRemote
{
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  margin: 0;
}

#divButtons {
  position: fixed;
  z-index: 99999;
  margin-bottom: 30px;
}

#divButtons button {
  border: none;
  padding: 0;
  background: none;
  outline: none;
}

.hide {
    display: none;
}

#divHelp {
    top: 40%;
    position: absolute;
    padding: 50px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 50px;
}