body {
  background-color: #ebebe0;
  font-family: 'Open Sans', sans-serif;
}

#todoCounter {
  margin-bottom: 25px;
}

.container {
  display: block;
  width: 700px;
  margin: 13px auto;
  border: 1px solid #b3b3ff;
  border-radius: 10px 10px 5px 5px;
  box-shadow: 0 12px 25px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  background-color: white;
  animation: grow 1.5s;
}

h2 {
  color: #b3b3ff;
}

#completed-tasks {
  margin-bottom: 25px;
}

#head {
  margin-top: 15px;
}

ul {
  margin: 0;
  padding: 0;
}

li * {
  float: left;
}

li, h3 {
  clear: both;
  list-style: none;
}

input, button {
  outline: none;
}

button {
  background: none;
  border: 0;
  color: #888;
  font-size: 15px;
  width: 40px;
  margin: 10px 5px;
  cursor: pointer;
  float: right;
  transition: transform 0.2s;
  outline: none;
}

button:focus {
  outline:0;
}

button:hover {
  color: #2f2f1e;
  transform: scale(1.3);
}

h3,
label[for='new-task'] {
  font-size: 15px;
  border-bottom: 1px solid #cbcbb4;
  padding: 30px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

input[type="text"]:focus {
  color: #333;
}

footer {
  margin-top: 35px;
}

input[type="text"] {
  margin-bottom: 25px;
}

.form-control:focus {
  border-color: #b3b3ff;
}

p > button:hover {
  color: #0FC57C;
}

li {
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px solid #cbcbb3;
  margin-bottom: 5px;
}

li > input[type="checkbox"] {
  margin: 0 10px;
  position: relative;
  top: 15px;
  border-radius: 50%;
}

li > label {
  font-size: 18px;
  line-height: 40px;
  width: 237px;
  padding: 0 0 0 11px;
}

li > input[type="text"] {
  width: 250px;
}

li > .delete:hover {
  color: #CF2323;
}

.completed label {
  text-decoration: line-through;
  color: #888;
}

ul li input[type=text] {
  display:none;
}

ul li.editMode input[type=text] {
  display:block;
}

ul li.editMode label {
  display:none;
}

#newColor ul li {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 25px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  display: inline-block;
  margin: 30px 5px;
  padding: 0;
  transition: transform 0.4s;
  animation: grow 1.5s 1.5s ease-out backwards;
}

.selected {
  border: 2px solid rgb(255, 255, 255);
}

.firstColor {
  background-color: #b3b3ff;
}

.firstColor:hover {
  transform: scale(1.1);
}

.secondColor {
  background-color: #ffb3b3;
}

.secondColor:hover {
  transform: scale(1.1);
}

.thirdColor {
  background-color: #94b8b8;
}

.thirdColor:hover {
  transform: scale(1.1);
}

.todoItem {
  transition: transform 0.3s;
}

.todoItem:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 25px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

#tasks-body {
  display: none;
}

@keyframes grow {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

button:disabled {
  background: dimgray;
  color: gray;
}

#todo-count,
footer {
  opacity: 0.7;
  margin-bottom: 10px;
}

.delete:after {
  font-family: "Material Icons";
  content: "\E888";
}

.edit:after {
  font-family: "Material Icons";
  content: "\E150";
}

.up:after {
  font-family: "Material Icons";
  content: "\E5D8";
}

.down:after {
  font-family: "Material Icons";
  content: "\E5DB";
}

#tasks-body li button:disabled {
  opacity: 0.5;
  background-color: white;
}


.article {
  padding:5% 25% 2%;
}