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

.container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #2d2c2d;
}

.todoApp {
  padding: 20px;
  background: #1f1e20;
  height: 60%;
  width: 30%;
  border-radius: 10px;
  position: relative;
  overflow: scroll;
}

h1.title {
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}

.todoForms {
}
form#todoForm {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.todoItm {
  width: 70%;
}
.todoItm input {
  padding: 5px;
  width: 100%;
  border-radius: 5px;
  border: none;
}
.submitBtn {
  width: 20%;
}

button#submitBtn {
  padding: 5px 20px;
  border-radius: 5px;
  background: #ff9d03;
  color: #fff;
  cursor: pointer;
  margin-left: 7px;
  width: 100%;
  transition: all 0.6s;
}
button#submitBtn:hover {
  background: #3d3d3d;
  color: #fff;
}

.todoAdd {
  position: absolute;
  bottom: 6px;
  padding: 5px;
  background: #d1e7dd;
  color: #0f5132;
  width: 95%;
  border-left: solid 4px #0f5132;
}

.todoDelete {
  position: absolute;
  bottom: 6px;
  padding: 5px;
  background: #f8d7da;
  color: #842029;
  width: 90%;
  border-left: solid 4px #842029;
}

ul.todoLists li {
  color: #000;
  list-style: none;
  padding: 10px;
  margin: 10px 0;
  background: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
}
ul.todoLists li:hover {
    background: #fffdea;
}
button.deleteBtn {
  font-size: 15px;
  padding: 5px;
  background: #ff9d03;
  color: #fff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.6s;
}
button.deleteBtn:hover {
  background: #000000;
  color: #fff;
}
