:root {
  --bg-color: #ffffff;
  --text-color: #ff0000;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100%;
  cursor: none;
  color: #000;
  background-color: var(--bg-color);
}

#invertedcursor {
  -webkit-appearance: none;
  position: absolute;
  width: 15px;
  height: 15px;
  background: #FF0000;
  border-radius: 50%;
  top: var(--y, 0);
  left: var(--x, 0);
  transform: translate(-50%, -50%);
  z-index: 2;
  mix-blend-mode: difference;
  transition: transform 0.2s;
  pointer-events: none;
}

canvas {
  display: block;
}

.Sliders {
  width: 140px;
  background-color: transparent;
  -webkit-appearance: none;
}

.Sliders:focus {
  outline: none;
}

.Sliders::-webkit-slider-runnable-track {
  background: var(--text-color);
  height: 2px;
  -webkit-appearance: none;
}

.Sliders::-webkit-slider-thumb {
  width: 13px;
  height: 13px;
  background: var(--text-color);
  cursor: none;
  -webkit-appearance: none;
  margin-top: -6px;
  border-radius: 8px;
}

input[type="color"] {
  width: 40px;
  height: 40px;
  padding: 0px;

  border-radius: 100px;
  cursor: none;
}
input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
  border-radius: 100px;
}
input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 100px;
}

.inp1 {
  border: 2px solid var(--bg-color);
}

.inp2 {
  border: 2px solid var(--text-color);
}

.textbar {
  background: transparent;
  position: absolute;
  border: 0%;
  border: transparent;
  border-bottom: 2px solid var(--text-color);
  left: 0%;
  outline: 0;
  color: grey;
  text-align: center;
  padding: 1%;
  width: 15%;
  margin: 0 auto;
  display: block;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "BL Melody", sans-serif;
  cursor: none;
}

input:focus::placeholder {
  color: transparent;
}

#information {
  text-align: left;
  display: block;
  position: absolute;
  width: 100%;
  top: 100%;
  font-family: "BL Melody", sans-serif;
  color: white;
  margin-left: 0%;
  margin-right: 0%;
  padding: 6%;
  line-height: 1;
  /*   max-width: 90%; */
  background-color: var(--bg-color);
}

p {
  width: 40%;
}

h2 {
  color: var(--text-color);
  font-family: "BL Melody";
  font-size: calc(width/40);
  text-transform: none;
  line-height: 50px;
}

p {
  font-family: "BL Melody", sans-serif;
  color: var(--text-color);
  font-size: calc(width/60);
  text-transform: none;
  line-height: 20px;
}

button {
  background-color: transparent;
  color: var(--text-color);
  outline: none;
  border: 2px solid var(--text-color);
  border-radius: 20px;
  padding: 10px;
  font-size: 10px;
  cursor: none;
}
