#container {
    width: 360px;
    margin: 100px auto;
    box-shadow: 0 0 3px rgba(0, 0, 0, 1);
    background: #f7f7f7;
}

h1 {
    background-color: #2980b9;
    color: white;
    margin: 0;
    padding: 10px 20px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: normal;
}
li span {
    background-color: #e74c3c;
    height: 40px;
    margin-right: 20px;
    text-align: center;
    color: white;
    width: 0;
    display: inline-block;
    transition: 0.2s linear;
    opacity: 0;
}

li:hover span {
    width: 40px;
    opacity: 1;
}

.a {
    width: 35px;
    float: right;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: blueviolet;
}

li{
    background: white;
    height: 40px;
    line-height: 40px;
    color: #666;
}

li:nth-child(2n) {
    background: #f7f7f7;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.completed {
    color: gray;
    text-decoration: line-through;
}

input{
    font-size: 18px;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 13px 13px 20px;
    color: #2980b9;
    background: #f7f7f7;
    border: 3px solid rgba(0, 0, 0, 0);
}

input:focus {
    background: white;
    border: 3px solid #2980b9;
    outline: none;
}