* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #304dcffd;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0;
}

.tasksContainer {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    z-index: 1;
}

h1 {
    margin-bottom: 1rem;
    text-align: center;
}

p {
    font-size: 12px;
}

.input-area {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.input {
    width: 75%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 10px;
}

.button {
    width: 20%;
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button:hover {
    background-color: #45a049;
}

.btn-remover {
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .btn-remover:hover {
    background-color: darkred;
  }

.ul {
    list-style: none;
}

li {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f9f9f9;
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
}

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