* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 100vh;
  margin: 0;
  background-color: #000;
  overflow: hidden;
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#imageContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*  opacity: 0.2;*/
/*  border: 1px solid red;*/
}

#currentImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

#progressBar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5px;
/*  background-color: rgba(255, 255, 255, 0.5);*/
}

#progress {
  height: 100%;
  width: 0;
  background-color: #4caf50;
}

#debuggerBar {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50vw;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  font-size: 20px;
  border-radius: 5px;
  z-index: 9999;
}
