:root{
    --black-color:#141414;
    --orange-color:#ff6200;
}

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
}


.container{
    background-color: var(--black-color);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.main-todos-div{
    width:470px;
    height: 500px;
    background-color: white;
    border-radius: 20px;
    padding: 45px 35px;
    padding-top: 30px;
    overflow: auto;
}


.heading{
    color: #373737;
    margin-bottom: 15px;
    /* text-align: center; */
    margin-left: 5px;
    display: flex;
    align-items: center;
}

input{
    width:280px;
    height: 50px;
    padding: 15px;
    outline: none;
    border-radius: 30px;
    border: 2px solid rgb(116, 116, 116);
    font-size: 17px;
    color: var(--black-color);
    font-weight: 500;
}

button{
    cursor: pointer;
}

#add_todo{
    padding: 15px 25px;
    font-size: 17px;
    border-radius: 30px;
    background-color: var(--orange-color);
    border: none;
    color: white;
    margin: 0px 10px;
}

.input-div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#todo_list_container{
    list-style-type: none;
    margin-top: 20px;
    
}

#todo_list_container li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0px;
    padding: 10px 10px;
}

#todo_list_container li:hover{
    /* border: 1px solid rgb(173, 173, 173); */
    border-radius: 20px;
}


.d-flex{
    display: flex;
    align-items: center;
}

.todo-content{
    font-size: 18px;
    color: var(--black-color);
    margin: 0px 10px;
    cursor: pointer;
    color: #373737;
}
.checked{
    text-decoration: line-through;
}

.delete_todo{
    cursor: pointer;
}