@import "reset.css";
body {
  background-color: #f6f9fc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0px;
}

.canvas {
  width: 800px;
  height: 800px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.controls {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.controls .controls__btns {
  margin-bottom: 30px;
}

.controls__btns button,
label {
  all: unset;
  cursor: pointer;
  background-color: white;
  padding: 5px 2px;
  width: 80px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  transition: opacity linear 0.1s;
}

.controls__btns button:hover,
label:hover {
  background-color: aliceblue;
  opacity: 0.85;
}

.controls__btns button:active,
label:active {
  transform: scale(0.98);
}

.controls {
  display: flex;
  justify-content: center;
}

.controls__color {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform ease-in-out 0.1s;
}

.controls__color:hover {
  transform: scale(1.2);
}

.controls__colors {
  display: flex;
  gap: 15px;
  align-items: center;
}

input#color {
  background-color: white;
  border-radius: 6px;
  height: 50px;
}

input#text {
  all: unset;
  font-size: 12px;
  width: 200px;
  padding: 5px 2px;
  font-weight: 700;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 0, 0, 0.2);
}

input#img {
  display: none;
}
