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

body {
    background-color: #EEF4F7;
    margin-bottom: 30px;
}

input {
    border-radius: 4px;
    border: none;
    box-shadow: 4px 4px 10px 0px #0000000A;
    width: 100%;
    padding: 20px;
    font-size: 16px;
    resize: none;
    background-color: #FFF;
}

button {
    cursor: pointer;
    border: none;
    background-color: #445FEA;
    font-weight: 700;
    border-radius: 4px;
    color: #FFF;
    transition: all 0.3s;
}

button:hover {
    background-color: #5671f8;
}

button:active {
    background-color: #2540c5;
}

h1,h2,h3 {
    color: #101820
}

.to-do{
    background-color: #FF6666;
    color: #680909
}

.doing {
    background-color: #FFFF66;
    color: #71730A
}

.done {
    background-color: #8DFD89;
    color: #0B5200
}