body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: cornflowerblue;
}
.head-name{
  font-size: 40px;
  text-transform: uppercase;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color:azure;
  font-weight: bold;
}
.top-name{
  display: grid;
  grid-template-columns: 270px 1fr;
  font-size: 20px;
  color: white;
  margin-bottom: -15px;
  margin-left: 7px;
}

.list-grid,
.input-grid{
  display: grid;
  grid-template-columns: 250px 200px 100px;
  column-gap: 15px;
  row-gap: 12px;
  align-items: center;
  
}
.input-grid{
  margin-bottom: 13px;
  align-items: stretch;
}
.add-todo,
.add-date{
  font-size: 17px;
  padding: 8px;
  border: none;
  border-radius: 5px;
  background-color:thistle;
}
.add-item-button{
  background-color: rgb(28, 240, 0);
  border: none;
  color: white;
  border-radius: 3px;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.add-item-button:hover{
  background-color: rgb(86, 173, 75);
}
.remove-button{
  background-color: red;
  border: none;
  padding: 8px;
  color: white;
  border-radius: 3px;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.remove-button:hover{
  background-color: rgb(209, 100, 100);
}