*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: beige;
    font-family: 'Mulish', sans-serif;
}

.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

#title{
    font-size: 70px;
    color: white;
    background-color: black;
}

#textToDo{
    width: 600px;
    height: 50px;
    background-color: lightgrey;
    border: 1px solid black;
    border-radius: 20px;
    outline: none;
    font-size: 20px;
    font-weight: bolder;
    padding-left: 20px;
    color: black;
    margin-top: 50px;
}

#addToDo{
    width: 150px;
    height: 50px;
    background-color: black;
    border: 1px solid black;
    color: white;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bolder;
    cursor: pointer;
}

#addToDo:active{
    background-color: green;
}


#clearToDo{
    width: 170px;
    height: 50px;
    background-color: black;
    border: 1px solid black;
    color: white;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

#clearToDo:active{
    background-color: red;
}

#containerToDo{
    margin-top: 70px;
    margin-left: 25%;
    font-size: 25px;
    text-transform: lowercase;
    text-transform: capitalize;
    cursor: pointer;
}

.textListStyle{
    font-size: 25px;
    font-weight: bolder;
    
}