* {
  margin: 0;
  padding: 0;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
  background-color: rgb(245, 241, 224);
}
.heading{
  display: flex;
  width: 100%;
  padding: 40px 0 40px 0;
  justify-content: center;
  align-items: center;
  font-family: "Press Start 2P";
}
#main {
  display: flex;
  padding: 0;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
  column-gap: 4em;
  padding-top: 40px;
  padding-bottom: 40px;
}

#main #functions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
  flex-shrink: 0;
  width: 30vw;
}

#container {
  display: grid;
  width: 600px;
  height: 600px;
  margin: 0;
  padding: 0;
  box-shadow: 0px 0px 10px 0px black;
  cursor: pointer;
}

.slider {
  width: 10rem;
  height: 10px;
  appearance: none;
  border-radius: 5px;
  cursor: pointer;
}

#slider{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.sliderValue{
  font-family: "Press Start 2P";
}

.coloringBtn,
.eraserBtn,.clearBtn,.selectColor{
  font-size: 19px;
  height: 2em;
  width: 6em;
  background-color: rgba(15, 15, 15, 0.788);
  border: 2px rgb(0, 0, 0);
  border-radius: 5px;
  color: white
}

.coloringBtn:hover,
.eraserBtn:hover,.clearBtn:hover,.selectColor:hover {
  transform: translateY(-4px);
  /* background-color: rgb(0, 0, 0); */
  font-weight: 600;
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.active{
  background-color: rgb(0, 0, 0);
}

#colorPicker{
  opacity: 0;
  position: absolute;
  pointer-events: none;
  height: 50px;  
}

.color {
  display: inline-block;
  height: 50px;
  width: 50px;
  border-radius: 25px;
  border: 1px solid grey;
}

.colorSetting{
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.footer{
  display: flex;
  width: 100%;
  font-size: 10px;
  font-family: "Press Start 2P";
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  gap: 40px;
}
a {
  text-decoration: none;
}
.fab{
  color: black;
}

