body {
	background-color: #111 !important;
}

.hueRotate *
 {
	-webkit-animation: filter-animation 360s infinite !important;
	animation: filter-animation 360s infinite !important;
}

@-webkit-keyframes filter-animation {
  0% {
    -webkit-filter: hue-rotate(0deg);
  }

  50% {
    -webkit-filter: hue-rotate(360deg);
  }

  100% {
    -webkit-filter: hue-rotate(0deg);
  }
}

@keyframes filter-animation {
  0% {
    filter: hue-rotate(0deg);
  }

  50% {
    filter: hue-rotate(360deg);
  }

  100% {
    filter: hue-rotate(0deg);
  }
}

.bg-light {
	background-color: #222 !important;
}

.bg-dark {
        background-color: #222 !important;
}

footer span.text-muted {
	font-size: smaller !important;
}

footer b {
	font-weight: bold !important;
	font-size: bigger !important;
}

div#controls {
	position: absolute;
	top: 1em;
	right: 1em;
	font-weight: bold;
}

div#controls label {
	display: block;
}
