body{
    margin: 0;
    background-color: cadetblue;
}
.to-do-list{
    margin: 30px;
    background-color: #c5e5e5;
    padding: 20px;
    border-radius: 20px;
}
h1{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #494949;
}
.note-input{
    outline: none;
    padding: 7px;
    width: 80%;
    font-size: 1.1em;
}
.note-input:focus::placeholder {
    font-weight: 900;
}
.btn-add{
    border: 3px inset cadetblue;
    background-color: transparent;
    padding: 5px 17px;
    border-radius: 10px;
}
.btn-add:active{
    background-color: cadetblue;
    color: aliceblue;
}
.list-notes{
    padding-left: 0;
    list-style-type: none;
}
.list-note-item{
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-family: Arial, Helvetica, sans-serif;
}
.btn-del {
    background-color: #576868;
    color: aliceblue;
    border: none;
    padding: 10px;
    font-weight: 900;
    border-radius: 5px;
}