*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
}
.container{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #153677, #4e085f);
    padding: 10px;
}
.todo-box {
    width: 100%;
    max-width: 540px;
    margin: 100px auto 20px;
    padding: 40px 30px 70px;
    background-color: #fff;
    border-radius: 10px;
}
.todo-box h2 {
    color: #002765;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
hr{
    padding: 1px;
    background-color: black;
    margin: 0px 30px;
}
.todo-box h2 img {
    height: 35px;
    margin-left: 10px;
}
.row {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 25px;
    border-radius: 20px;
}
#input-box {
    width: 80%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 40px;
    background-color: rgba(82, 83, 74, 0.69);
    color: #1f181f;
    font-size: 18px;
    font-weight: 530;
    padding-left: 20px;
}
.row #add {
    height: 100%;
    outline: none;
    border: none;
    cursor: pointer;
    padding: 8px 20px;
    width: 15%;
    font-size: 20px;
    margin-right: 2px;
    border-radius: 40px;
    background-color: rgb(57, 141, 155);
}
#text {
    position: relative;
    font-size: 18px;
    margin-left: 20px;
    margin-right: 30px;
}
ul li {
    list-style: none;
    padding: 5px 0px 10px 8px;
    background-color: #dbf2d3;
    margin-bottom: 3px;
    border-radius: 10px;
}
ul li i {
    position: absolute;
    right: 20px;
    cursor: pointer;
    font-size: 16px;
}

ul li i:hover {
    background-color: rgb(199, 103, 103);
}