body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: rgb(205, 169, 169);
}
.container {
  display: flex;
  width: 100%;
  gap: 10px;
  padding: 10px;
  max-width: 1100px;
}
label.titlu {
  margin-left: 10px;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(to right, red, orange, #9b870c);
  -webkit-background-clip: text;
  color: transparent;
}

section {
  background-color: white;
  border-radius: 5px;
}
.drawing-board {
  flex: 1;
}
.drawing-board canvas {
  width: 100%;
  height: 100%;
}
.instrumente {
  width: 200px;
  background-color: antiquewhite;
  margin-bottom: 20px;
}

.forme li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.forme img {
  height: 22px;
  margin-right: 10px;
}

.optiuni li {
  display: flex;
  align-items: right;
  margin-bottom: 10px;
}

.optiuni input[type="color"],
.optiuni input[type="number"] {
  width: 70px;
  box-sizing: border-box;
  margin-left: 5px;
  margin-bottom: 10px;
  display: block;
  background-color: antiquewhite;
  margin-block: 5px;
}

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

.butoane {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 35px;
}

.butoane button {
  background-color: transparent;
  color: orangered;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  width: 150px;
  height: 60px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(194, 55, 55, 0.2);
}
