* {
  box-sizing: border-box;
}

body {
  background-color: ;
  color: ;
  font-family: Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

h1 {
  color: black;
  font-size: 50px;
  text-align: center;
  opacity: 0.4;
}

form {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  width: 300px;
}

.input {
  border: none;
  font-size: 20px;
  padding: 10px 20px;
  display: block;
  width: 100%;
  outline: none;
}

.input::placeholder {
  color: #d5d5d5;
}

.input:focus {
  outline-color: rgb(214, 214, 214);
}

.TuDus {
  background-color: black;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.TuDus li {
  border-top: 1px solid #e5e5e5;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 1rem 2rem;
}

.TuDus li.completed {
  color: #b6b6b6;
  text-decoration: line-through;
}

small {
  color: gray;
  display: inline-block;
  margin-top: 3rem;
  text-align: center;
}