html {
  scrollbar-width: none;
}

body {
  width: 100vw;
  height: 100vh;
  user-select: none;
  background: var(--background-color);
  cursor: pointer;
}

svg {
  width: 100vw;
  height: 100vh;
}

button {
  position: fixed;
  bottom: 40px;
  right: 45px;
  width: 200px;
}

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

label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  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: none;
}