body{
    margin: auto;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.form{
    margin: 10px 0px;
}

.title{
    font-size: 40px;
}

#taskInput {
    width: 400px;
    height: 45px;
    outline: none;
    padding-left: 14px;
    margin-right: 20px;
    font-size: 14px;
    background-color:#fbfbfb;
    border: none;
    border-bottom: 1px solid #4b4b4b;
}


#addTaskButton{
    width: 60px;
    height: 50px;
    border-radius: 10px;
    border: none;
    background-color: #3d3d3d;
    color: #ffffff;
    font-size: 26px;
}

#addTaskButton:hover{
    box-shadow: 3px 4px 8px black;
}

#countListStart{
    padding-left: 14px;
    font-style: italic;
}

#list{
    list-style-type: none;
    padding-left: 0;
}

.listData{
    display: flex;
    font-size: 17px;
    font-weight: 600;
    color: #4d4c4c;
    vertical-align: middle;
    align-items: center;
    justify-content: space-between;
    border: 1px solid black;
    margin-bottom: 24px;
    border-radius: 12px;
    padding: 0px 23px;
}

.taskList{
    display: flex;
    vertical-align: middle;
    align-items: center;
}



.taskList p{
    margin-left: 10px;
    text-decoration: if(
        style(--complete: true): line-through;
        else: none;
    );
}

.taskList input{
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #707070;
}

.delete button{
    border: none;
    background-color: white;
    font-size: smaller;
    font-weight: 1000;
    cursor: pointer;
}
