@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #cccccc;
}

body a {
  text-decoration: none;
  color: #444444;
  margin-top: 15px;
}

#paintArea {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
  height: 55vh;
  width: 90%;
  margin: 30px;
  background-color: #fff;
}

.options {
  height: 27vh;
  width: 90%;
  background-color: #444444;
  padding: 20px;
}

.tools-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 10px;
}

.tools-row h5 {
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.tools-row button {
  padding: 10px;
  border-radius: 25px;
  border: none;
  background-color: #ffffff;
  font-weight: bold;
  color: #444444;
  cursor: pointer;
}

.tools-row button:hover {
  background-color: #ffffff8a;
}

input[type=range] {
  -webkit-appearance: none;
  height: 40px;
  width: 70%;
  background-color: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 300px;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: rgb(0, 0, 0);
  margin-top: -4px;
}

input[type="color"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  width: 70px;
  height: 30px;
  border: none;
  cursor: pointer;
}

input[type="color"]::-webkit-color-swatch {
  border-radius: 2px;
  border: 1px solid #000000;
}

input[type="color"]::moz-color-swatch {
  border-radius: 2px;
  border: 1px solid #000000;
}