 * {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}

body {
    background-color: #c5c5c5;
    display: flex;
    justify-content: center;
    
}

.to-do {
    margin-top: 50px;
}

.to-do-wrapper h2 {
    margin-bottom: 20px;
    color: blue;
}

#to-do-input, #filter {
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    box-shadow: 2px 3px 6px 2px rgb(0 0 0 / 39%);
}

#filter::placeholder {
    color: blue;
}

#to-do-input {
    margin-bottom: 30px;
}

.btn,
button {
    padding: 10px;
    color: #f9f9fd;
    border-radius: 4px;
    border: none;
    background-color: #101010;
    cursor: pointer;
    box-shadow: 2px 3px 6px 2px rgb(0 0 0 / 39%);
}

button {
    margin-top: 50px;
}

button:hover {
    transform: scale(.97);
}

.to-do-list {
    margin-top: 30px;
}

.list-item {
    margin-top: 10px;
    /* display: inline; */
    color: #0e0e50;
    cursor: pointer;
    list-style: decimal;
}

.fa {
    cursor: pointer;
    margin-left: 5px;
}

@media (max-width: 500px) {
    input {
        display: block;
    }

    #to-do-input {
        margin-bottom: 20px;
    }

    .to-do-form > div:first-child {
        margin-bottom: 30px;
    }
}