body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #507DBC;
}
.title{
    text-align: center;
    font-size: 32px;
    margin: 0;
    margin-top: 16px;
    font-weight: bolder;
    color: white;
}
.container{
    display: grid;
    justify-content: center;
}

.add-to-list{
    height: 100px;
    width: 600px;
    margin: 60px;
    background-color: #DAE3E5;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 1);
}

.list-container{
    border-radius: 20px;
    background-color: #DAE3E5;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 1);
}


.todo-list-grid, .todo-input-grid{
    padding: 30px 15px 25px 30px;
    display: grid;
    grid-template-columns: 200px 150px 100px;
    column-gap: 10px;
    row-gap: 10px;
    justify-content: center;
    align-items: center;
}
.todo-input-grid{
    margin-bottom: 10px;
    align-items: stretch;
}

.name-input, .due-date-input{
    font-size: 16px;
    padding: 6px;
}

.addTodo{
    background-color: green;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.deleteButton{

    background-color: darkred;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px;
}