html {
  scrollbar-width: none;
  overscroll-behavior: none;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  user-select: none;
  background: #ffcd94;
}

main > article {
  z-index: 2;
}

body > article {
  z-index: 1;
}

article {
  font-size: 15vw;
  position: absolute;
  color: #bb54ff;
  font-family: monospace;
}

article:nth-child(odd) {
  transform: scaleX(-1);
}

div#params {
  position: fixed;
  bottom: 60px;
  left: 60px;
  z-index: 5;
  gap: 10px;
  display: flex;
}

button#clear {
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 5;
}

label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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;
}