@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Ubuntu', sans-serif;
}

.container {
    background: url(dddepth-182.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding: 10px;
}

.toDoapp {
    display: grid;
    place-content: center;
    background: #ffffff8c;
    backdrop-filter: blur(25px);
    margin: 30px auto 20px;
    border-radius: 10px;
    max-width: 32rem;
}

.toDoapp h2 {
    margin: 34px 0px;
    text-align: center;
    font-size: 35px;
}

.toDoapp img {
    width: 67px;
    margin-right: 10px;
}

.title {
    display: flex;
    align-items: center;

}

span {
    cursor: pointer;
    position: absolute;
    right: 3px;
    font-size: 30px;
    top: -4px;
    border-radius: 50%;
    height: 22px;
    width: 23px;
    transition: 0.3s ease-in-out;
}

span:hover {
    color: red;
}

ul li {
    cursor: pointer;
    margin: 26px 22px;
    padding: 5px 14px;
    list-style: decimal;
    background: #00000033;
    border-radius: 6px;
    position: relative;
    font-size: 20px;
}


ul li.checked {
    text-decoration: line-through;
}

.row button {
    padding: 8px 22px;
    border: none;
    background: linear-gradient(45deg, #08bbb9, #eca500, rgb(255, 70, 70));
    border-radius: 6px;
    transition: 0.3s ease-in-out;
    background-size: 200%;
    color: white;
}

.row button:hover {
    background-position: right;
}

input {
    height: 30px;
    border: none;
    border-radius: 6px;
}

input::placeholder {
    text-transform: capitalize;
    padding: 10px;
}