.scene-container {
  max-width: 1100px;
  width: calc(100% - 100px);
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 50px auto 0;
  position: relative;
}
.color-selector {
  width: 100%;
  height: 50px;
  position: absolute;
  z-index: 10;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  margin-bottom: 10px;
}
.color {
  height: 100%;
  width: 50px;
  margin: 0 10px;
}
#red {
  background-color: red;
}
#black {
  background-color: black;
}
#white {
  background-color: white;
}
#pink {
  background-color: pink;
}
#green {
  background-color: green;
}
#blue {
  background-color: blue;
}
