html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  /*overflow: hidden;*/
  gap: 0;
}

* {
  /* border: 1px solid red; */
}

p {
  margin: 0;
  padding: 0;
}

#mainContainer {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

#sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 4rem;
  font-family: sans-serif;
  font-style: oblique;
  /*justify-content: center;*/
  min-width: 100px;
  width: 200px;
  height: 100%;
  color: #000;
  background: #fff;
}

#p5-container {
  display: flex;
  align-items: center;
  vertical-align: center;
  margin: auto 0;
  flex: 1;
  height: 100%;
  max-width: fit-content;
  max-height: 95%;
  background: #000;
}

canvas {
  display: block;
  border: 0px solid #000000;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
  box-shadow: 200px;
}

.input {
  display: flex;
  /* align-items: center; */
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  height: 40px;
  /* background: rgb(0, 0, 0); */
  /* border: 1px solid black; */
  box-shadow: 20px;
  box-sizing: border-box;
}

.input input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  width: auto;
  box-sizing: border-box;
  border: none;
}

.addButton {
  flex: 0 0 auto;
  min-width: 40px;
  aspect-ratio: 1/1;
  height: 100%;
  margin: 0;
  border: none;
  border-radius: 100%;
  background: orange;
}
