body {
  background-color: black;
}

audio {
  position: fixed;
  left: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
}

#canvas {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#container {
  position: fixed;
  top: 10px;
  right: 10px;
  border-radius: 25px;
  display: block;
  margin: 20px;
  padding: 20px;
  background-color: #101010;
  display:inline-block;
}

#controls {
  z-index: 100;
  opacity: 0.0;
}

#controls:hover {
  opacity: 1.0;
}

.select-style {
    border: 1px solid #ccc;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    background: #fafafa url("img/icon-select.png") no-repeat 90% 50%;
}

.select-style select {
    padding: 5px 8px;
    width: 130%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.select-style select:focus {
    outline: none;
}