*:focus {
  outline: none;
}

html, body {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

h2 {
  font-family: 'Pacifico';
}

main {
  width: 100vw;
  height: 100vh;
}

#canvas {
  
}

#tools {
  width: 100%;
  height: 50px;
  overflow-x: auto;
  overflow-y: hidden;
  background-color: #DDD;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.tool, .option {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.tool, .option > i {
  font-size: 1.5em;
}

.tool-selected {
  background-color: #555;
  color: white;
}

.pane {
  position: absolute;
  top: 100%;
  height: 50vh;
  width: 100%;
  max-width: 500px;
  left: 0%;
  background-color: #EEE;
  transition: top .3s ease;
}

.open {
  top: 50% !important;
}

.picker-titlebar {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.picker-titlebar > h2 {
  margin-left: auto;
}

.close-picker {
  font-size: 2em;
  cursor: pointer;
  display: inline-block;
  margin-left: auto;
  margin-right: 10px;
}

#sliders-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-row-gap: 20px; 
}

#sliders-wrapper > input {
  box-sizing: border-box;
  margin-right: 20px;
}
#sliders-wrapper > span {
  font-weight: 900;
  font-family: 'Pacifico';
  text-align: center;
}