*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background: #f2f2f2;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    width: 420px;
    background: white;
    padding: 20px;
    border-radius: 8px;
}
h1{
    text-align: center;
    margin-bottom: 15px;
}
.todo-form input,
.todo-form textarea{
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}
.todo-form button{
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 10px;
}
.todo-form button:hover {
    background: #0056b3;
}
.todo-item{
    background: #fafafa;
    padding: 10px;
    margin-top: 15px;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.todo-item img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 8px;
}
.todo-item h3{
    margin-bottom: 5px;
}
.todo-item p{
    font-size: 14px;
}
.delete-btn{
    margin-top: 8px;
    background: red;
    color: white;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
}
.delete-btn:hover{
    background-color: brown;
}