@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-top: 50px;
}

.canvas {
  width: 700px;
  height: 700px;
  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);
}
.controls {
  display: flex;
  flex-direction: column;
}

.controls__colors {
  width: 700px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.controls__color {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.controls__btns {
  align-self: center;
  margin-top: 20px;
}
.btn {
  all: unset;

  cursor: pointer;
  padding: 10px;
  margin: 0 5px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 5px 5px 5px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  width: 100px;
  text-align: center;
  font-size: 18px;
}
.btn:hover {
  background-color: rgb(213, 211, 211);
}
.btn:active {
  transform: scale(0.95);
}
.controls__range {
  align-self: center;
  margin: 20px 0 0;
}
