@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  position: relative;
}

.toolbox {
  background-color: rgba(255, 0, 0, 0.701);
  /* border: 10px solid rgb(238, 123, 142); */
  /* margin-top: -100px; */
  border-radius: 50px;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 806px;
  max-width: 100%;
  position: absolute;
  bottom: 20px;
  padding: 1rem;
}

.toolbox > * {
  background-color: #fff;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  border-radius: 0.5rem;
  height: 2rem;
  width: 2rem;
  margin: 0.25rem;
  padding: 0.25rem;
  cursor: pointer;
}
.toolbox > *:nth-last-child(7) {
  margin-left: auto;
}

.toolbox > *:nth-last-child(5) {
  margin-left: auto;
}

#color {
  border-radius: unset;
  margin-left: 1rem;
}

.pink {
  background-color: pink !important;
}

.stoolbox {
  top: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.337);
  width: 160px;
  max-width: 50%;
  padding: 1.25rem;
}

.hide {
  visibility: hidden;
}
input[type="file"] {
  display: none;
}