*{
  margin:0px;
  padding:0px;
}
body{
  font-family: "Poppins", serif;
  background-color:  #f8ffe5;
}
#main-heading{
  text-align: center;
  margin-bottom: 50px;
  color: #06d6a0;
  font-size: 100px;
}
.grid-container{
  display:grid;
  grid-template-columns: 200px 150px 100px;
  column-gap: 30px;
  row-gap: 10px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}
#todo-input, #todo-date{
  font-family:"Poppins", serif;
  font-size: 15px;
  padding: 10px 7px;
  border-radius: 5px;
  border: none;
  box-shadow:0 0 10px rgba(0, 0, 0,0.2);
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);

}
.btn-delete{
  font-family: "Poppins", serif;
  background-color: rgb(197, 23, 23);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 0px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.btn-todo{
  font-family: "Poppins", serif;
  background-color: rgb(3, 189, 0);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 0px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.btn-todo:hover{
  transform: scale(1.05);
  background-color: rgb(15, 111, 25);

}
.btn-delete:hover{
  transform: scale(1.05);
  background-color: rgb(111, 18, 15);

}