/* file: index.css */

#driver video {
  border: 1px;
  width: 95vw;
  height: 95vh;
  max-width: 95vw;
  max-height: 95vh;
}

#status {
  position: fixed;
  top: 1em;
  left: 1em;
  z-index: 2;
  max-height: 50vh;
  overflow: hidden;
}

#mode-selection {
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#mode-selection button {
  width: 15em;
  max-width: 100%;
  height: 2em;
  font-size: 30pt;
  margin-bottom: 1em;
}

body {
  background-color: black;
  color: #ddd;
  font-family: monospace;
  font-size: 12pt;
  font-weight: bold;
}

#dashboard {
  position: fixed;
  top: 1em;
  right: 1em;
  text-align: right;
}

button#fullscreen {
  position: fixed;
  width: 10em;
  bottom: 1em;
  font-size: 15pt;
  left: calc(50% - 5em);
}
