body {
  margin: 0;
  padding: 0;

  display: flex;

  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h1 {
  color: rgb(234, 137, 1);
}

.main {
  display: flex;
  gap: 20px;
}
.tools {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.gridCanvas {
  border: 1px solid black;
  width: fit-content;
  height: fit-content;
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: column;
}
.grid-controls{
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.rowSquare {
  width: 15px;
  height: 15px;
  border: 0.5px solid grey;
}
