@charset "UTF-8";

/* Base */
html {
  color: hsl(0, 0%, 90%);
  font-family: sans-serif;
  font-size: 20px;
}

body {
  margin: 0;
  background-color: hsl(0, 0%, 30%);
}


/* Main contents */
header {
  margin: 0;
  padding: 0.2em 0.5em;
  white-space: nowrap;
  overflow-x: hidden;

  background-color: hsl(0, 0%, 20%);
  border-bottom: solid 2px #000;
  font-size: 4rem;

  display: flex;
  align-items: center;
}
#head-icon {
  display: block;
  height: 1.4em;
  margin-right: 0.3em;
}

#dmx-lanes-scroller {
  margin: 0;
  padding: 3rem 2rem;
  overflow-x: scroll;
}

#dmx-lanes-container {
  width: fit-content;
  overflow-x: hidden;
  border: solid 1px #000;
  border-radius: 1rem;
}

#error-view {
  color: hsl(0, 100%, 70%);
  text-align: center;
  font-size: 2rem;

  margin: 0;
  position: fixed;
  width: 100vw;
  left: 0;
  bottom: 20vh;
}
#error-view:empty {
  display: none;
}
