@import url('https://fonts.googleapis.com/css2?family=Expletus+Sans:wght@400;700&display=swap');


* {
  margin: 0%;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(237, 237, 237);
  color: rgb(51, 51, 51);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Expletus Sans', cursive;
}


footer {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}
.socials {
  display: flex;
  gap: 16px;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
  font-size: 56px;
}

.canvas {
  cursor: crosshair;
  width: 580px;
  height: 580px;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
}

.row {
  flex: 1;
  display: flex;
}

.box {
  flex: 1;
  background-color: rgb(254, 254, 254);
}

.body-content {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
}

.left-pane {
  padding-top: 30px;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 400px;
  align-items: center;
  height: 555px;
}

.right-pane {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type='radio'] {
  -webkit-appearance: none;
  appearance: none;
}

input[type='radio']:checked + label {
  background-color: rgb(51, 51, 51);
  color: rgb(237, 237, 237);
}

#color-picker {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 75px;
  height: 75px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
}

input::-webkit-color-swatch {
  border-radius: 15px;
  border: none;
}
input::-moz-color-swatch {
  border-radius: 15px;
  border: none;
}

label, button {
  text-align: center;
  cursor: pointer;
  border: 1px solid rgb(51, 51, 51);
  border-radius: 4px;
  width: 200px;
  height: 41px;
  padding: 10px 20px;
}

button {
  margin: 16px auto;
}









.slider p {
  font-size: 26px; 
  font-weight: 600;
  padding-left: 30px; 
  color: rgb(51, 51, 51); 
}

.slider input[type="range"] {
  appearance: none !important;
  -webkit-appearance: none !important; 
  width: 200px; 
  height: 4px; 
  background: rgb(51, 51, 51); 
  border: none; 
  outline: none; 
  }

  .slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important; 
  width: 18px; 
  height: 18px; 
  background: rgb(51, 51, 51); 
  border: 2px solid #DDD; 
  border-radius: 50%; 
  cursor: pointer; 
}
.slider input[type="range"]::-webkit-slider-thumb:hover {
  background: greenyellow; 
} 

#rangeValue {
  padding: 0;
  text-align: center;
  margin: 16px 0;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
