#webcam {
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0;
  top: -100vh;
  transition: all var(--animationTimer) ease;
  z-index: 2000;
}

#webcam.displayed {
  top: 0;
}

@media print {
  #webcam {
    display: none;
  }
}
