body {
    background-color: #282828;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.headline {
    text-align: center;
    color: black;
    background-color: pink;
    padding: 20px 0;
}

.toDoListe {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background-color: rgba(255, 192, 203, 0.1);
    border-radius: 12px;

    /* NEU: Alles zentrieren */
    display: flex;
    flex-direction: column;
    align-items: center;
}

#toDoListe {
    list-style: none;
    font-size: 20px;
    padding: 0;
    color: white;
}

#toDoListe li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
    padding: 6px 10px;
    border-radius: 8px;
    transition: 0.2s;
}

#toDoListe li.done {
    text-decoration: line-through;
    opacity: 0.6;
}

#toDoListe li::before {
    content: "🎀 ";
	margin-right:10px;
}

#toDoListe li::after {
    content: " 🎀";
margin-left:10px;
}

#eingabe {
    width: 70%;
    padding: 8px;
    border-radius: 6px;
    border: none;
    margin-top: 10px;
    text-align: center;

}

#add-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    background-color: pink;
    cursor: pointer;
    margin-top: 20px;

}
