html,
body {

  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(147, 132, 163);
  font-family: monospace;
}

canvas {
  display: block;



}

#strokeStyle {
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  justify-items: center;
  color: white;
  font-size: 20px;
}

#wrapper {
  width: 100%;
  height: 100%;
  float: left;

  top: 0%;
  left: 0%;

  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  text-align: center;
  justify-content: center;
  z-index: 0;

}

#sketchpad {
  width: 100%;
  height: 100%;
  float: left;
  left: 0%;
  top: 0%;
  position: absolute;
  cursor: none;
  z-index: 1;

}

#headers {
  width: 100%;
  height: 8%;
  padding-bottom: 1%;
  float: left;
  top: 0%;
  left: 0%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.164), rgba(3, 3, 3, 0));
  color: rgba(0, 0, 0, 0.219);

  position: relative;
  align-items: center;
  text-align: center;
  justify-content: center;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 15px;

  display: flex;
  flex-direction: column;

}

#toolbar {
  width: 40%;
  height: 15%;
  float: left;
  border-radius: 20px 20px 20px 20px;

  background-color: rgba(3, 3, 3, 0.747);
  color: rgb(255, 255, 255);
  display: flex;
  position: absolute;
  left: 30%;
  bottom: 5%;
  align-items: center;
  text-align: center;
  justify-content: center;

  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.363);
  z-index: 2;


}

.editorButton {


  position: relative;
  display: flex;
  text-align: left;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;

  cursor: pointer;

  font-size: 35px;
  background-color: rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 0.581);
  border: 1px solid rgba(40, 40, 40, 0.477);

  transition: .3s;


}

.editorButton:hover {

  background-color: red;
  transition: .3s;
}


.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 10px;

  background: #797676;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: white;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: white;
  cursor: pointer;
}



a {
  font-size: 15px;
  letter-spacing: 5px;
  text-decoration: none;

}

a:link {
  color: red;
}

a:active {
  color: black;
}

#bottombar {
  position: absolute;
  display: block;
  width: 100%;
  height: 2%;
  float: left;
  left: 0%;
  bottom: 1%;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

@media (max-width:1000px) {


  #headers {
    font-size: 25px;

  }

  a {
    font-size: 25px;
    letter-spacing: 5px;


  }

  #toolbar {
    width: 90%;
    height: 10%;
    float: left;
    border-radius: 20px 20px 20px 20px;

  
 
    display: flex;
    position: absolute;
    left: 5%;
    bottom: 5%;
   
    z-index: 2;


  }

  .editorButton {


    position: relative;
    display: flex;
    text-align: left;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 70px;

    cursor: pointer;

    font-size: 35px;
    background-color: rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 0.581);
    border: 1px solid rgba(40, 40, 40, 0.477);

    transition: .3s;


  }

  .editorButton:hover {

    background-color: red;
    transition: .3s;
  }

  #strokeStyle {
    background-color: rgba(0, 0, 0, 0.8);
    height: 70px;

    text-align: center;
    justify-items: center;
    color: white;
    font-size: 30px;
  }



  .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    border-radius: 10px;

    background: #868585;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }

  .slider:hover {
    opacity: 1;
  }

  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: white;
    cursor: pointer;
  }

  .slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: white;
    cursor: pointer;
  }



}