 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-image: url('https://i.pinimg.com/1200x/ac/54/a1/ac54a128942c750799c2c1fe144d2467.jpg');
            background-size: cover;
            min-height: 100vh;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 20px;
        }
         .todo-container {
            background: white;
            opacity: 0.9;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 400px;
            max-width: 45vw;
            margin-right: 25%;
        }
         h1 {
            text-align: center;
            color: #333;
            margin-bottom: 30px;
            font-size: 2em;
         }
          .todoInput {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
        }input[type="text"] {
            flex: 1;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        } button {
            padding: 12px 20px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        button:hover {
            background-color: #45a049;
        }
        .todo-list {
            list-style: none;
        }

        .todo-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #eee;
            transition: background-color 0.2s;
        }

        .todo-item:hover {
            background-color: #f9f9f9;
        }

        .todo-item:last-child {
            border-bottom: none;
        }

        .todo-text {
            flex: 1;
            font-size: 16px;
            color: #333;
        }

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

        .complete-btn {
            background-color: #2196F3;
            padding: 8px 12px;
            font-size: 14px;
            margin-right: 10px;
        }

        .complete-btn:hover {
            background-color: #1976D2;
        }

        .delete-btn {
            background-color: #f44336;
            padding: 8px 12px;
            font-size: 14px;
        }

        .delete-btn:hover {
            background-color: #d32f2f;
        }

        .empty-state {
            text-align: center;
            color: #888;
            font-style: italic;
            padding: 40px 20px;
        }