:root {
    --background-color: black;
    --text-color: white;
}

html,
body {
  user-select: none;
  touch-action: none;
  -webkit-user-select: none;
  cursor: url("hand.png"), auto;
  background-color: black;
  color: white;
}

div {
    margin: 0px;
    padding: 0px;
}

img {
    height: 512px;
    width: 512px;
    box-shadow: none !important;
}

#rockStage{
    position: fixed;
    top: 25vh;
    left: 25vw;
    z-index: 1;
}




#backgrounding{
    position: fixed;
    top: 5vh;
    left: 5vw;
    z-index: 0;
}

#buttons{
    position: fixed;
    transform: translate(400%, 1500%);
    z-index: 3;
    cursor: url("pointer.png"), auto;
}

button{
    border: 1px solid var(--text-color);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    margin: 1rem 0;
    background-color: var(--background-color);
    color: var(--text-color);
    cursor: url("pointer.png"), auto;
}

button:hover{
    background-color: var(--text-color);
    color: var(--background-color);
    cursor: url("pointer.png"), pointer;
}
button:disabled{
    opacity: 0.4;
    cursor: not-allowed;
}
button:disabled:hover{
    background-color: var(--background-color);
    color: var(--text-color);
}
main{
    margin-left:0;
    margin: 20px;
}
main > *{
    max-width: none;
}

#app {
    margin: 0px 0px 20px 0px;
}

#input {
    position: fixed;
    top: 35vh;
    left: 35vw;
    z-index: 2;
    filter: contrast(110%) brightness(150%);
    cursor: url("chisel.png"), pointer;
}

#rockStage canvas {
    clip-path: polygon(12% 100%, 6% 33%, 22% 18%, 42% 4%, 77% 5%, 89% 28%, 97% 54%, 95% 73%, 86% 88%, 93% 100%);
    cursor: url("pointer.png"), auto;
}

#backgrounding canvas {
    mask-image: linear-gradient(transparent, black, black, black, black, black, black, transparent);
}

#input canvas {
    mask-image: radial-gradient(ellipse, black 70%, rgba(0, 0, 0, 0) 75%);
}

#output {
    border: 1px solid rgb(224, 224, 224);
    height: 512px;
    width: 512px;
}

#colors div {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 10px 12px;
    display: inline-block;
}