html {
  height: 100%;
}
body {
  min-height: 100%;
  margin: 0;
  font-size: 25px;
  background-color: #e4ffd4;

}

.container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 35em;
  flex-direction: column;
}

.div_input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0fbe9;
  padding: 5px;
  border: 1px solid;
  border-radius: 3px;
}

.div_input input {
  font-size: 25px;
  background-color: transparent;
  border-style: none;
}
.div_input input:focus {
  outline: 0;
}

i {
  margin-left: 5px;
  cursor: pointer;
  color: #6e8f85;
}

.div_task {
  background-color: #f0fbe9;
  width: 30em;
  height: 70vh;
  border: 1px solid;
  border-radius: 5px;
  margin-top: 5px;
  overflow: auto;
}

.marker {
  max-width:15px;
  height: 15px;
  background-color: #edc68e;
  border-radius: 50%;
  flex: 1;
}

.icons_container {
  display: flex;
  justify-content: space-around;
}

li{
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 15px;
  box-sizing: border-box; /* Considera padding e borda dentro da largura */

}

li span{
  flex: 1;
  margin: 0 20px;
  overflow: auto;
}

li i{
flex: 1;
margin: 0 10px;
transition: 0.5s;
}

.fa-check:hover{
  color: #008000;
  filter: drop-shadow(0px 0px 1px #003c00); 

}

.fa-trash-can:hover{
  color: #ff0000;
  filter: drop-shadow(0px 0px 1px rgb(151, 2, 2)); 

}
ul{
  padding: 0 20px ;
}
