* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

#container {
  position: fixed;
  width: 100%;
  height: 100%;
}

#ui {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#ui .settings {
  position: absolute;
  bottom: 25px;
  left: 25px;
  pointer-events: all;
}

#ui .controls {
  position: absolute;
  bottom: 25px;
  right: 25px;
  pointer-events: all;
  text-align: right;
}

#ui label {
  display: inline-block;
  margin-bottom: 10px;
}

#ui select {
  display: inline-block;
  margin-bottom: 10px;
}

#ui button {
  display: inline-block;
  margin-bottom: 10px;
}

#ui #loader {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
}

#ui #loader .message {
  background-color: #fff;
  padding: 10px;
}

#ui #loader.loaded .message {
  opacity: 0;
}