*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-image: linear-gradient(120deg, lightblue, #fda085);
    font-family: Poppins, sans-serif;
    min-height: 100vh;
}
header{
    font: size 1.5rem;
}
header,
form{
    min-height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;

}
form input,
form button{
    padding:0.5rem;
    font-size:2rem;
    border:none;
    background: lightslategray;

}
form button{
    color:#fda085;
    background: lightgray;
    cursor: pointer;
    transition: all 0.3s ease;
}
form button:hover{
    background: lightslategray;
    color:lightgray;
}
.todo-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.todo-list{
    min-width: 30%;
    list-style: none;
}
.todo{
    margin:0.5rem;
    background: lightgrey;
    color: black;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}
.todo li{
    flex: 1;
}
.trash-btn,
.completed-btn{
    background: #fda085;
    color: fff;
    border:none;
    padding:1rem;
    cursor:pointer;
    font-size: 1rem;

}
.completed-btn{
    background: green;
}
.todo-item{
    padding: 0rem 0.5rem;
}
.fa-trash,
.fa-check{
    pointer-events: none;
}
.completed{
    text-decoration: line-through;
    opacity: 0.5;
}
.fall{
    transform: translateY(8rem) rotateZ(20deg);
    opacity: 0;
}

/*CUSTOM SELECTOR */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background-image: none;
  }
  
  /* Custom Select */
  .select {
    margin: 1rem;
    position: relative;
    overflow: hidden;
  }
  select {
    color: #fda085;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    width: 12rem;
    padding: 1rem;
  }
  /* Arrow */
  .select::after {
    content: "\25BC";
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    background: #fda085;
    cursor: pointer;
    pointer-events: none;
    transition: all 0.3s ease;
  }
 
  .select:hover::after {
    background:#fff;
    color: #fda085;
  }
  
  