* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  display: flex;
  font-family: Helvetica, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  display: flex;
  flex-direction: column;
  background-color: #e6e6ec;
}

.container {
  display: flex;
  flex-direction: column;
}

.draw-area {
  border: 0.1rem solid #333;

  margin: auto;
  margin-top: 2rem;
  border-radius: 1rem;
}

.toolbox {
  margin: auto;
  width: 650px;
  height: 5rem;
  border: 0.1rem solid #333;
  display: flex;
  background-color: rgb(193, 207, 207);
  align-items: start;
  border-radius: 1rem;
  margin-top: 1rem;
}

.items-left,
.items-right {
  width: 50%;
  margin-left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.items-right {
  justify-content: end;
  margin-right: 1rem;
}

button {
  height: 2.5rem;
  width: 2.5rem;
  margin-top: 1rem;
  /* border-radius: 1px; */
}

input {
  height: 2.5rem;
  width: 2.5rem;
  margin-top: 1rem;
}

span {
  height: 2.5rem;
  width: 2.5rem;
  margin-top: 1rem;
  background-color: rgb(230, 223, 223);
  border: 0.1rem solid #333;
  text-align: center;
  padding-top: 0.5rem;
}

.eraser {
}

p {
  font-size: 14px;
  font-weight: 300;
  color: #646469;
  margin: auto;
  text-align: center;
  margin-top: 2rem;
}
