/* Include the padding and border in an element's total width and height */
* {
    box-sizing: border-box;
}

/* Remove margins and padding from the list */
ul {
    margin: 0;
    padding: 0;
}

/* Style the list items */
ul li {
    cursor: pointer;
    position: relative;
    padding: 12px 8px 12px 40px;
    background: #CCCC99;
    font-size: 18px;
    transition: 0.2s;

    /*list items are unselectable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* all odd list items = different color (zebra-stripes) */
ul li:nth-child(odd) {
    background:  #f9f9f9;
}

/* Darker background-color on hover */
ul li:hover {
    background: #ddd;
}

/* Add a "checked" mark when clicked on */
ul li.checked {
    content: 'Completed';
    position: absolute;
    border-color: #fff;
    border-style: dotted;
    border-width: 0 2px 2px 0;
    top: 10px;
    left: 16px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
}

/* Style the close button */
.close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 13px 17px 13px 17px
}

.close:hover {
    background-color: #f44336;
    color: white;
}

/* Style the header */
.header {
    background-color: #FF6666;
    padding: 30px 40px;
    color: white;
    text-align: center;
    font-family: Didot;
    border: dotted;
}

/* Clear floats after the header */
.header:after {
    content: "";
    display: table;
    clear: both;
}

/* input */
input {
    border: none;
    width: 75%;
    padding: 10px;
    float: left;
    font-size: 16px;
    font-family: Didot;
}


.addBtn {
  padding: 15px 25px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #555;
  background-color: #FCCCCC;
  border-radius: 15px;
  box-shadow: 0 9px #999;
}

.addBtn:hover {background-color: #bbb}

.addBtn:active {
  background-color: #bbb;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}