
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html,
body {
  padding: 40px;
  text-align: center;
  margin: 0;
  font-family: sans-serif;
  background: black;
  color: white;
}

video {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.view {
  display:  none;
}

.view.is-active {
  display:  block;
}

#actions {
  position: fixed;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 460px;
  height: 40px;
  margin: 0;
  padding: 5px;
  text-align: left;
  background: rgba(0, 0, 0, 0.25);
}

#messages {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 40px;
  z-index: 1;
}

ul {
  list-style: none;
  margin: 0;
  padding: 10px 10px 10px 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 460px;
  flex-wrap: wrap;
  align-content: flex-end;
}

li {
  margin: 0 0 5px;
  padding: 5px 10px;
  display: flex;
  flex: 0 0 100%;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.25);
  text-align: left;
}

input {
  height: 30px;;
  border: 0;
  width: 340px;
  padding: 5px;
}

button {
  height: 30px;
  border: 0;
  width: 90px;
  background: white;
  color: black;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

button:hover {
  opacity: 0.5;
  cursor: pointer;
}

#local {
  position: fixed;
  width: 400px;
  height: auto;
  bottom: 0;
  left: 0;
  border: 4px solid white;
}
