html {
  height: 160vh;
  min-width: 600px;
  /* background-image: url("Notebook-PPT-Backgrounds.jpg"); */
  background-repeat: no-repeat;
  background-size: cover;
  background: linear-gradient(to bottom, rgba(194, 142, 142, 0.5), rgb(194, 83, 75)), #f0f0f0;


}

.headline {
  font-size: 50px;
  font-family: 'Times New Roman', Times, serif;
  color: rgb(0, 0, 0);
  justify-content: center;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
  animation-delay: 0.5s;


}

.completed-count {

  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
  animation-delay: 0.6s;
}

p {
  margin-top: 1px;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}




.container,
.input-container {
  width: 600px;
  /* height: 300px; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  animation: flyInBounce 1s ease forwards;


}

.main {
  padding: 20px 10px 20px 10px;
  margin: 10px;
  background-color: #f0f0f0;
  overflow-wrap: break-word;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;

}

form {
  background-color: transparent;
  padding: 1px;
  border-radius: 0;



}



input[type="text"] {
  height: 30px;
  width: 200px;
  min-width: 20px;
  min-height: 20px;
  outline: 2;
  font-size: 1rem;
  flex-grow: 1;
  box-sizing: border-box;
  border: 1.5px solid black;
  border-radius: 2.5px;
  font-weight: 550;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 0.7s;


}

input[type="text"]:focus {
  border: 2px solid rgb(33, 97, 194);
  outline: none;
  box-shadow: rgb(33, 97, 194)
}



button {
  height: 30px;
  font-size: 1rem;
  margin-bottom: 10px;
  box-sizing: border-box;



}


button[type="submit"] {

  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 0.7s;
}

button:hover {}

button:active {
  transform: none;
}

button[name="deleteButton"] {

  background-image: url('icons8-wastebasket-48.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: 10px;
  padding: 0;
  margin-right: 20px;
}

ul {
  padding: 10px;
  list-style: none;
  text-align: center;
  background-color: #f0f0f0;
  width: 100%;
  box-sizing: border-box;

  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 5px;
  margin-top: 5px;
  justify-content: center;



}

li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  cursor: pointer;
  margin-bottom: 10px;
  /*line-height: 1.5;     */
  height: 20px;
  padding: 10px;
  font-weight: 100;
  font-size: larger;
  overflow: hidden;
  text-indent: 10px;


}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

}

.fade-in-slide-up {
  animation: fadeInSlideUp 0.5s ease-in-out;
}

i {
  pointer-events: none;
}

.todoList {

  padding: 2px;
  border-radius: 2px;
  width: auto;
  height: auto;
  text-align: center;
  justify-content: center;
  flex-direction: column;

}

.todo-item {
  margin-right: 10px;
  margin-left: 200px;
  font-weight: 500;
  text-indent: 10px;
  line-height: 4;
  transition: color 0.5s ease;

}

.completed {
  color: gray;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  transition: color 2s;

}

.clearAll {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.clearAll:hover {
  color: rgb(240, 25, 25)
}

#errorMessage,
.roboto-regular {
  color: red;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 14px;


}

.hidden {
  display: none;
}

.blink {
  animation: blink-animation 0.5s steps(5, start) 3;
  -webkit-animation: blink-animation 0.5s steps(5, start) 3;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}


@keyframes flyInBounce {
  0% {
    transform: translateY(-100%);
    opacity: 0;


  }

  40% {
    transform: translateY(60px);
    opacity: 1;
  }

  50% {
    transform: translateY(30px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
  }
}


@keyframes fadeIn {
  0% {
    opacity: 0;

  }

  100% {
    opacity: 1;

  }
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);

  }

  100% {
    opacity: 1;
    transform: translateY(0);

  }
}

.fade-in-slide-up {
  animation: fadeInSlideUp 0.5s ease forwards;
}