@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500&family=Roboto:wght@300;400;500&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

.editor {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.toolbar {
  width: 250px;
  background: #bcb3b3;
}

.toolbar-item {
  padding: 10px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

input[type="range"] {
  width: 100%;
}

.image-area {
  flex-grow: 1;
  padding: 20px;
  background: #555555;
}

#canvas {
  max-width: 100%;
  max-height: 100%;
}