li img {
  width: 25px;
  height: 25px;
}
.sketch-cont {
  display: flex;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding: 20px;
}

.toolsBoard {
  display: flex;

  flex-direction: row;
  justify-content: center;
  align-items: start;
  padding: 15px 0px 15px 20px;
  width: 580px;
}

.toolsBoard .row {
  font-size: 1.5rem;
  padding: 0px 25px 0px 0px;
}

section {
  background-color: #fff;
  border-radius: 7px;
}

.drawBoard {
  flex: 1;
}

.drawBoard canvas {
  width: 600px;
  height: 700px;
}
.row .options {
  list-style: none;
  padding-left: 0px;
  padding-right: 20px;
}

.row .options .option {
  display: flex;
  align-items: center;
}

.option :where(span, label) {
  padding-left: 15px;
  padding-top: 15px;
}

.option:is(:hover, .active) img {
  filter: invert(17%) sepia(90%) saturate(3000%) hue-rotate(900deg)
    brightness(100%) contrast(100%);
}

.option:is(:hover, .active) :where(span, label) {
  color: #4a98f7;
}

.option #fill-color {
  cursor: pointer;
  height: 14px;
  width: 14px;
}

#fill-color:checked ~ label {
  color: #4a98f7;
}

.option #size-slider {
  width: 80%;
  height: 10px;
  margin-top: 20px;
}

.title {
  font-size: 2rem;
}

.colors .options {
  display: flex;
  justify-content: space-between;
}

.colors .option {
  height: 20px;
  width: 20px;
  background: red;
  border-radius: 50%;
  margin-top: 3px;
  margin-bottom: 15px;
  margin-left: 10px;
  position: relative;
}

.colors .option:hover::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  height: 12px;
  width: 12px;
  background: inherit;
  border-radius: inherit;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
}

.colors .option:nth-child(1) {
  background-color: #fff;
  border: 1px solid #505050;
}

.colors .option:nth-child(2) {
  background-color: #000;
}

.colors .option:nth-child(3) {
  background-color: #e02020;
}
.colors .option:nth-child(4) {
  background-color: #6dd400;
}
.colors .option:nth-child(5) {
  background-color: #4a98f7;
}

.colors .option:first-child.selected::before {
  border-color: #ccc;
}

.colors .option::before {
  position: absolute;
  content: '';
  height: 12px;
  width: 12px;
}

.option #color-picker {
  opacity: 0;
  cursor: pointer;
}

.buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.buttons button {
  width: 80%;
  color: #fff;
  border: none;
  outline: none;
  padding: 5px 2px;

  margin-bottom: 13px;
  background: none;
  border-radius: 5px;
  cursor: pointer;
}

.buttons .clear-canvas {
  color: #6c757d;
  border: 1px solid #6c757d;
}

.clear-canvas:hover {
  color: #fff;
  background: #6c757d;
}

.buttons .save-img {
  background-color: #4a98f7;
  border: 1px solid #4a98f7;
}

/*********************
****BELOW 1200px*******
***********************/
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}

/**************************/
/* BELOW 544px (Phones) */
/**************************/

@media (max-width: 34em) {
  .resume-heading {
    font-size: 3rem;
  }

  .drawBoard canvas {
    width: 410px;
    height: 500px;
  }

  ul {
    padding-left: 10px;
  }

  .sketch-cont {
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 10px;
    padding: 5px;
  }

  .sketch-cont span {
    display: none;
  }

  .toolsBoard {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 8px;

    width: 390px;
    height: 150px;
  }

  .vertBox {
    grid-column: span 2 / span 2;
    grid-column-start: 4;
  }
  .tools {
    grid-column: span 2 / span 2;
  }

  .option #size-slider {
    width: 80%;
    height: 10px;
    margin-top: 10px;
  }

  .colors .option {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    margin-top: 3px;
    margin-bottom: 10px;
    margin-left: 0px;
    position: relative;
  }

  .colors .options {
    padding: 0px;
  }

  .shapes {
    width: 100px;
  }
  .option #fill-color {
    margin-top: 10px;
  }

  .buttons button {
    margin-bottom: 5px;
  }
}
