@import "reset.css";

body {
  background-color: rgb(255, 234, 238);
  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;
  height: 100vh;
  padding: 50px 10px;
}

.canvas {
  width: 700px;
  height: 450px;
  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);
}

.title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 0 7px 6px rgba(50, 50, 93, 0.11);
}

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

.controls__btns {
  margin-top: 30px;
}

.controls__btns button {
  all: unset;
  cursor: pointer;
  background-color: white;
  padding: 5px 20px;
  width: 80px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 5px 6px rgba(50, 50, 93, 0.11), 0 5px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.3);
  /*text-transform: uppercase;*/
  font-weight: 700;
  font-size: 1rem;
}

.controls__btns button:nth-child(1) {
  margin-right: 5px;
}

.controls__btns button:active {
  transform: scale(0.9);
}

.controls__colors {
  display: flex;
  margin: 30px 0px;
}

.controls__color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0px 2px;
  box-shadow: 0 5px 6px rgba(50, 50, 93, 0.11), 0 5px 3px rgba(0, 0, 0, 0.08);
}

.controls__range {
  margin-top: 20px;
}
