canvas {
  background-color: hsl(0, 0%, 11%);
}

.canvas-editor-container {
  min-width: 40%;
  height: 500px;
}

.canvas-editor-container i {
  font-size: 2rem;
}

.first-editor {
  height: 40px;
  margin-bottom: 10px;
}

.editor input {
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 2px black solid;
  outline: none;
  padding-left: 2px;
}

.editor {
  border: 2px black solid;
  width: 90%;
  height: 50%;
  background: white;
}

.editor li select {
  border: none;
  outline: none;
  font-size: 1.5rem;
  height: 50px;
}

.editor-buttons i {
  padding: 10px 10px 10px 0;
  cursor: pointer;
}

.editor-buttons {
  padding-right: 15px;
  padding-left: 15px;
}

.editor-buttons li {
  padding: 10px 10px 10px 0;
}

.editor-buttons li:not(:first-child) {
  padding: 10px;
}

.canvas-share {
  border: 2px black solid;
  height: 20%;
  width: 15vw;
  border-radius: 15px;
  background: #4267b2;
  margin-bottom: 5px;
  padding: 2px;
}

.canvas-share div {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

.canvas-share a {
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 25px;
  text-decoration: none;
  outline: none;
}

.canvas-share i {
  transition: all 0.3s ease-out;
  outline: none;
}

.canvas-share i:hover {
  color: white;
}

.fa-palette input {
  opacity: 0;
  position: relative;
  bottom: 40px;
  right: 5px;
  height: 20px;
  cursor: pointer;
}

.fonts li {
  font-size: 1rem;
  font-weight: bold;
  transition: transform 0.3s ease-out;
}

.fonts li:hover {
  transform: scale(1.8);
}

.fonts {
  transform: scale(0);
  transition: tranform 0.5s easout;
}

form button {
  background: none;
  border: none;
  outline: none;
}