body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  overflow: hidden;
  background-color: #000000;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1, div, span {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  font-size: 1.0em;
}

.splashscreen {
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  flex-flow: row;
  color: #FFFFFF;
  font-size: 0.7em;
  padding: 6px;
  background-color: rgba(0,0,0,.6);
}

.splashscreen > * {
  margin-right: 6px;
}

.splashscreen > *:last-child {
  margin-right: 0;
}

.splashscreen img {
  width: 64px;
  height: 64px;
}

.fadeout {
  opacity: 0;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}

.error {
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 6px;
  display: flex;
  visibility: visible;
  flex-flow: column;
  color: #FFFFFF;
  font-size: 1em;
  padding: 6px;
  max-height: 50%;
  background-color: rgba(0,0,0,.6);
  overflow: hidden;
}

.error > div{
  color: #FFFFFF;
  font-size: 0.7em;
  max-width: 100%;
}

.error > div > div {
  display: inline-block;
  margin-right: 6px;
  max-width: 100%;
  word-break: break-all;
}
