* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: darkgray !important;
}


/* text editor edit */
p {
  width: 100%;
  text-align: center;
  font-size: 60px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: gray;
  background-color: black;
  text-shadow: 2px 2px rgb(41, 173, 68);
}


/* button's include image editing */
img {
  filter: brightness(0);
  width: 12px;
  height: 12px;
}




/* oprtion bar editing */
.main_options {
  box-shadow: 0 0 10px 0px white;
  padding: 10px;
  background-color: gray;
  border-radius: 10px;
}

.main_options li {
  list-style: none;
  display: inline-block;
}


/* colour button editing */
#colour {
    position: relative;
    margin-left: -22px;
    margin-right: 35px;
  }
  
  #colour ul {
    display: flex;
  }
  
  #label {
    position: absolute;
    margin-left: 7px;
    margin-top: -20px;
  }
  #colourbtn {
    position: absolute;
    width: 30px;
    height: 10px;
    margin-right: 20px;
    poin
  }




/* text input container editing */
#textarea {
  height: 50vh;
  margin-top: 10px;
  padding: 40px;
  border: 3px solid black;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.7);
  background-color: #ffffff;
  border-radius: 10px;
}



/* colour change when active button showing except undo and redo buttons */
.active  {
  background-color: rgb(50, 200, 80) !important;
}


