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

* {
  box-sizing: border-box;
}

body {
  background-color: #18253d;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

canvas {
  border: 2px solid rgb(148, 148, 148);
  background-color: #fff;
}

.toolbox {
  background-color: steelblue;
  border: 2px solid rgb(148, 148, 148);
  border-top: 0;
  display: flex;
  width: 604px;
  padding: 0.5rem;
}

.toolbox > * {
  background-color: #fff;
  border: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  height: 50px;
  width: 50px;
  margin: 0.1rem;
}

.toolbox > *:last-child {
  margin-left: auto;
}
