
body {
  font-family: sans-serif;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
    background-color: rgb(28, 233, 233);
    padding: 20px 30px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1{
    text-align: center;
    color: black;
}

.input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input{
    padding: 20px;
    background-color: white;
    color: rgb(10, 3, 3);
    border: none;
    cursor: pointer;
    font-size: large;
}
button{
    color: rgb(19, 13, 35);
    border: none;
    padding: 10px;
    background-color: rgb(163, 58, 220);
    cursor: pointer;
    font-size: large;
}

button:hover{
    background-color: rgb(215, 148, 203);
}

ul {
  list-style: none;
  padding: 0;
}

li {
  background: #e9e9e9;
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.remove-btn {
  background: red;
  color: white;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
}
