* {
    margin: 0;
    padding: 0;
    font-family: 'Lora', serif;
    box-sizing: border-box;
}

.container {
    width: 100%;
    min-height: 100vh;
    background: #e2dbd4;
    padding: 10px;
}

.todo-app {
    width: 100%;
    max-width: 420px;
    background: #F6F2EE;
    margin: 50px auto 20px;
    padding: 40px 30px 50px;
    border-radius: 10px;
}

.todo-app h2 {
    color: #5F5744;
    display: flex;
    margin-bottom: 30px;
}

.todo-app h2 img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 30px;
    padding: 5px 20px;
    margin-bottom: 25px;
}

input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px;
    font-size: 16px;
}

button {
    border: none;
    width: 100%;
    outline: none;
    padding: 14px 50px;
    background: #5F5744;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 40px;
    margin-bottom: 50px;
}

ul li {
    list-style:none;
    color: #333;
    font-size: 16px;
    padding: 12px 50px 12px 50px;
    user-select: none;
    cursor: pointer;
    position: relative;
}

ul li::before {
    content: '';
    position: absolute;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background-image: url(images/unchecked.png);
    background-size: cover;
    background-position: center;
    top: 7px;
    left: 8px;
}

ul li.checked {
    color: #c9c0b8;
    text-decoration: none;
}

ul li.checked::before {
    background-image: url(images/checked.png);
}

ul li span {
    position: absolute;
    right: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #888;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

ul li span:hover {
    background: #EBE1D8;
}