body {
  margin: 0;
  padding: 0;
  background-color: black;
  overflow: hidden;
}

#falling-images {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#falling-images img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#music-button {
  position: fixed;
  bottom: 5px;
  left: 5px;
  cursor: pointer;
  z-index: 1;
}

#disclaimer {
  position: fixed;
  bottom: 20px;
  right: -185px; /* initially hidden */
  width: 200px;
  padding: 1px;
  padding-right: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  color: white;
  text-align: right;
  transition: right 0.3s ease-out; /* add a transition effect */
  z-index: 0;
  cursor: pointer; /* add a pointer cursor when hovering */
  /* rounded edges */
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

#disclaimer:hover {
  right: 0px; /* expand when hovered */
}

#music-controls {
  position: fixed;
  bottom: 5px;
  left: 5px;
  z-index: 1;
}

#music-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

#volume-slider {
  position: absolute;
  top: 51%;
  left: 230%;
  margin-top: -7.5px;
  margin-left: 5px;
  appearance: none;
  -webkit-appearance: none;
  width: 100px;
  height: 15px;
  background-color: transparent;
  display: none;
  cursor: pointer;
  /* make it appear in the verical center of the parenting div */
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#volume-slider::-webkit-slider-runnable-track {
  height: 3px;
  background-color: white;
}

#volume-slider::-moz-range-track {
  height: 3px;
  background-color: white;
}

#volume-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  margin-top: -3.5px;
}

#volume-slider::-moz-range-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
}


#playDiv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

#playDiv img {
  width: 10%;
  height: 10%;
  object-fit: contain;
  cursor: pointer;
}