/* Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* No Select */
.noselect,
img {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

html {
  font-size: 10px;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
}

body {
  z-index: 100;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  font-size: 10px;
  background-color: #ffffff;
}

main {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background-color: #ffffff;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webgl {
  position: fixed;
  outline: none;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.gradient {
  width: 10vw;
  height: 10vw;
  border: 1px solid red;
  background-image: linear-gradient(to right, #3d52e2 0%, #a60341 50%, #fa5900 100%);
  z-index: 100;
  display: none;
}

.brush {
  width: 400px;
  height: 400px;
  border: 1px solid red;
  background-image: radial-gradient(#000000 0%, #505050 37.5%, #505050 42.5%, #000000 50%);
  z-index: 100;
  display: none;
}/*# sourceMappingURL=index.css.map */