body {
  margin: 0;
  padding: 0;
}
#camera-feed {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}
#container {
  box-sizing: border-box;
  border-style: solid;
  border-color: red;
  border-width: 7px;
  position: absolute;
  background: rgb(29, 30, 78);
  color: antiquewhite;
  font-size: 24px;
  height: 100vh;
  width: 100vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
#video-feed {
  z-index: auto;
  width: 1024px;
  border-radius: 25px;
  border-color: rgb(88, 89, 148);
  border-width: 3px;
  border-style: solid;
  display: none;
}
