@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap");
* {
  box-sizing: border-box;
}
body {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}
h1 {
  color: rgb(63, 63, 63);
  font-size: 4rem;
  text-align: center;
  opacity:.9 ;
}
.thought h1{
  margin-top: -30vh;
}
form {
  box-shadow: 0 10px 10px rgba(103, 31, 121, 0.644);
  max-width: 100%;
  width: 500px;
}
.input {
  color: rgb(131, 66, 196);
  font-size: 2rem;
  padding: 1rem 2rem;
  display: block;
  width: 100%;
  border-radius: 15px ;
  border: none;
}
.input::placeholder {
  color: #7c7c7c;
}
.input:focus {
  outline-color: rgb(131, 66, 196);
}
.todos {
  background-color: #fff;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.todos li {
  border-top: 1px solid #e5e5e5;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 1rem 2rem;
}
.todos li.completed {
  color: #b6b6b6;
  text-decoration: line-through;
}
small {
  color: #b5b5b5;
  margin-top: 3rem;
  text-align: center;
  opacity: .6;
}