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

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

main {
  font-size: 5vw;
  width: 100vw;
  top: 0;
  left: 0;
  color: var(--text);
  position: fixed;
}

canvas {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  image-rendering: pixelated;
}

div#params {
  z-index: 5;
  position: fixed;
  bottom: 110px;
  right: 45px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  text-transform: capitalize;
}

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: solid 1px rgb(200, 200, 200);
}

button {
  position: fixed;
  bottom: 50px;
  right: 45px;
  z-index: 5;
  width: 210px;
}