html {
  font-size: 62.5%;
}

body {
  font-size: 1.3rem;
  background-color: rgb(235, 223, 235);
  margin: 0;
  overflow: hidden;
}

div[id="entireContainer"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

div[id="scene"] {
  perspective: 1000px;
  width: 150px;
  height: 150px;
  margin: 7rem 7rem 9rem 7rem;
}

@keyframes rotate {
  from { transform: rotate3d(0, 0, 0, 0); }
  to { transform: rotate3d(.3, .3, .3, 360deg); }
}

div[id="cube"] {
  width: 150px;
  height: 150px;
  position: relative;
  transform-style: preserve-3d;
}

div[class="facet"] {
  margin: 0 auto;
  text-align: center;
  font-size: 2.5rem;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #fff;
  backface-visibility: hidden;
}

#facetFront {
  transform: translateZ(75px);
  background-color: rgba(137, 207, 240, .5);
}

#facetLeft {
  transform: rotateY(90deg) translateZ(75px);
  background-color: rgba(52, 233, 16, .3);
}

#facetBack {
  transform: rotateY(180deg) translateZ(75px);
  background-color: rgba(255, 0, 0, .3);
}

#facetRight {
  transform: rotateY(-90deg) translateZ(75px);
  background-color: rgba(255, 217, 0, .3);
  opacity: 1;
}

#facetTop {
  transform: rotateX(90deg) translateZ(75px);
  background-color: rgba(225, 0, 255, .3);
  opacity: 1;
}

#facetBottom {
  transform: rotateX(-90deg) translateZ(75px);
  background-color: rgba(10, 47, 148, 0.3);
}

form[id="sliders"] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type="range"]:hover {
  cursor: grab;
}

input[type="range"]:hover:active {
  cursor: grabbing;
}

div[class="sliderLabel"] {
  display: flex;
  justify-content: end;
  align-items: start;
  gap: 2rem;
  z-index: 1;
}

input[type="range"] {
  margin: 0;
  z-index: 1;
}

p {
  margin: 0;
  width: fit-content;
}

input[type="radio"] {
  margin: 0 .5rem;
}

label {
  margin-right: .5rem;
}

label:last-child {
  margin-right: 0;
}

form[class="radioBtn"], form[class="checkboxBtn"] {
  display: flex;
  align-items: center;
  gap: .2rem;
}

form[class="radioBtn"] {
  margin: 1.5rem 0;
}
