* {
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* background-color: #14161a; */
    background: #ffbad5;
    font-family: 'Arial', 'sans-serif';
}

.container {
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* padding: 20px; */
    background-color: #1f2229;
}

.header-container {
    background-color: #ff6685;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    text-align: center;
    justify-content: center;
}

h1 {
    padding: 10px;
}

.form-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #1f2229;
}

#todo-form {
    display: flex;
}

#todo-input {
    display: flex;
    width: 80%;
    padding: 10px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#add-button {
    width: 20%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background-color: #ff6685;
    color: white;
    display: flex;
    cursor: pointer;
}

.todo-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
    background-color: #1f2229;
    color: white;
    border-radius: 8px;
}

.todo-item:hover {
    background-color: #363940;
    transition: 0.5s;
}

.completed {
    text-decoration: line-through;
    color: #aaa;
}

.no-completed {
    color: #aaa;
}

.list-container {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #1f2229;
}

.delete-btn {
    width: 20%;
    padding: 10px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
    background-color: #ff6685;
    color: white;
    /* display: flex; */
    cursor: pointer;
}

.task-text {
    wdith: 1;
    justify-content: left;
    display: flex;
    text-align: left;
}

.task-text {
    padding: 15px;
    width: 80%;
    display: flex;
    justify-content: left;
    text-align: left;
}
