body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
/* Global styles */


.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(228, 209, 209);
    color: white;
    text-align: center;
}

/* Todo List styles */
.todo-list {
    max-width: 600px;
    margin: 0 auto;
}

.todo-list h1 {
    text-align: center;
    margin-bottom: 52px;
    margin-top: 20px;
}

.todo-list form {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.todo-list form input[type="text"] {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    margin-right: 60px;
    margin-left: 20px;
}

.todo-list form input[type="submit"] {
    padding: 12px 20px;
    background-color: #4CAF50;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-left: -28px;
}

.todo-list ul {
    list-style: none;
    padding: 0;
}

.todo-list li {
    background-color: #f9f9f9;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.todo-list li.completed {
    background-color: #f0f0f0;
    text-decoration: line-through;
}

.todo-list li button {
    float: right;
    padding: 7px 10px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 20px;
}

h2 {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    margin-top: 20px;
    font-size: 4rem;
}

.card {
    width: 557px;
    height: 427px;
    background-color: white;
    padding: 20px;
    /* Add some space between the content and the border */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    /* Add a shadow effect */
    border-radius: 15px;
}

footer {
    background-color: rgb(125, 112, 112);
    padding: 20px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

}

/* parent container styles */
.parent {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 59vh;
}
