body {
  overflow: hidden;
  margin: 0 !important;
}
body .error {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  text-align: center;
}
body .error h1 {
  margin: 0;
  margin-bottom: 6px;
}
body .error button {
  min-width: 200px;
  margin-top: 10px;
  width: 20%;
}
body .view {
  height: 100vh;
}
body video {
  opacity: 1;
}
body .logo {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}
body .logo > span {
  margin-top: 6px;
  font-size: x-large;
  line-height: 1;
}
body .logo > img {
  margin: auto;
  width: 100px;
}
body .logo > .status {
  padding-left: 10px;
  position: relative;
  display: flex;
  align-items: center;
  margin: auto;
  margin-top: 0px;
}
body .logo > .status::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: gray;
  border-radius: 8px;
  margin-left: -20px;
  position: absolute;
}
body .logo > .status[data-status=connected]::before {
  background-color: var(--green);
}
