* {
  box-sizing: border-box;
}

body {
  font-family: "Heebo", sans-serif;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main {
  display: flex;
  flex-direction: column;
  outline: 4px solid #5c8cad;
  border-radius: 5px;
  position: relative;
}
body main .paintBox {
  width: 480px;
  height: 500px;
}
body main .paintBox canvas {
  background-color: #fff;
}
body main section {
  display: flex;
  align-items: center;
  height: 45px;
  background-color: #5c8cad;
  padding: 0 0.2rem;
  position: relative;
}
body main section .tools {
  width: 30px;
  height: 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  margin: 0 0.25rem;
  outline: 2px solid #fff;
  border-radius: 5px;
  color: #fff;
}
body main section .dash:active, body main section .plus:active, body main section .color:active, body main section .trash:active {
  opacity: 0.8;
  transform: scale(0.95);
}
body main section .tools.number {
  width: 55px;
  background-color: #fff;
  color: #000;
  font-size: 18px;
}
body main section .tools.color {
  border: 0;
}
body main section .tools.color input[type=color] {
  border: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  background-color: #fff;
}
body main section .tools.color input[type=color]::-webkit-color-swatch {
  border: none;
  padding: 0;
  margin: 0;
}
body main section .tools.trash {
  position: absolute;
  right: 0;
}/*# sourceMappingURL=paint.css.map */