html, body {
  margin: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

#canvas {
}

#color-menu-wrap {
  position: absolute;
  width: 100vw;
  height: 34px;
  top: 10px;
  left: 0;
  z-index: 2;
}

#color-menu {
  display: flex;
  justify-content: space-evenly;
}

.color-button {
  width: 50px;
  height: 50px;
  border-radius: 30px;
  display: inline-flex;
  border: 2px solid white;
}

.color-button.selected {
  border: 2px solid black;
}

.color-orb {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 1000px;
  transition: width 0.2s ease-out, height 0.2s ease-out, opacity 0.2s ease-out;
}

@media (max-width: 550px) {
  .color-button {
    width: 30px;
    height: 30px;
  }

  .color-orb {
    width: 30px;
    height: 30px;
  }
}