body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FB773C;
    background-image: url('Vibrant-Swirl-Textures-10.png');
}

.container {
    background-color: rgba(235, 54, 120,0.4);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(-30px 30px 5px #000000);
}
.container h1{
    color: #4F1787;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}
#task-input {
    width: 200px;
    padding: 10px;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#add-task-btn {
    padding: 10px;
    border-radius: 5px;
    background-color: #4F1787;
    color: white;
    border: none;
    cursor: pointer;
}

#add-task-btn:hover {
    background-color: #180161;
}

#task-list {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.task-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.task-item.complete {
    text-decoration: line-through;
    color: gray;
}
