body {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--background);
}

/*#dots-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.dot {
  position: absolute;
  z-index: 1;
  width: 2vw;
  height: 2vw;
  display: block;
  overflow: visible;
  font-size: 14px;
  filter: blur(0.4vw) brightness(120%);
}

svg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  filter: blur(0.5vw) brightness(120%);
}*/

canvas {
  position: fixed;
  top: 0;
  left: 0;
}

video {
  --opacity: 0.4;
  position: fixed;
  top: 0;
  left: 0;
  transform: scaleX(-1);
  min-width: 100vw;
  min-height: 100vh;
  clear: both;
  display: block;
  filter: saturate(0%) brightness(150%);
  opacity: var(--opacity);
  mix-blend-mode: soft-light;
}

canvas {
  z-index: 1;
}

div#params {
  width: 100%;
  position: fixed;
  padding: 40px 55px;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

div#buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4vw;
}

div#buttons button {
  padding: 0.5vw 1.25vw;
  font-size: 1.2vw;
  text-transform: capitalize;
}

div#buttons button.selected {
  background: black;
  color: white;
}

div#params select {
  font-size: 20px;
  width: 200px;
  width: 50%;
}

@media (max-width: 1200px) {
  div#buttons {
    display: none;
  }

  div#params select {
    display: block;
  }
}

@media (min-width: 1200px) {
  div#buttons {
    display: flex;
  }

  div#params select {
    display: none;
  }
}

div#inputs {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 2;
  gap: 10px;
}

label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 275px;
  text-transform: capitalize;
  z-index: 2;
  gap: 20px;
}

input[type='range'] {
  width: 100%;
  appearance: none;
  height: 1px;
  outline: none;
  border-radius: 30px;
  cursor: pointer;
  background: black;
}

input[type='range']::-webkit-slider-thumb {
  appearance: none;
  height: 11px;
  width: 11px;
  background: black;
  border-radius: 50%;
  outline: none;
}

input[type='color'] {
  -webkit-appearance: none;
  border: none;
  width: 25px;
  height: 25px;
  background: none;
  cursor: pointer;
}

input[type='color']::-webkit-color-swatch-wrapper {
  padding: 0;
}

input[type='color']::-webkit-color-swatch {
  border-radius: 50%;
  border: none;
}

label#custom-colors {
  display: none;
  gap: 5px;
}

label#custom-colors input[type='color'] {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
