*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
     background-image: linear-gradient(120deg,#9a78e9, #12148a);
     color: white;
     font-family: 'Roboto', sans-serif;
     min-height: 100vh;
}
header {
    font-size: 3rem;
    
}
header, form {
    min-height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
form input, form button {
    padding: 0.5rem;
    font-size: 2rem;
    border: 2px;
    background: white;

}
form button {
    color:#9a78e9;
    background:white;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background: #9a78e9;
    color: white;
}
.todo-container{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.todo-list {
    min-width: 30%;
    list-style: none;

}

.todo {
    margin: 0.5rem;
    background: white;
    color: black;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

.todo li { 
    flex: 1;
   }


.complete-btn {
    background: #12148a;
    border: none;
    color: green;
    padding: 1rem;
    cursor: pointer;
    font-size: 1rem;
    
}
.complete-btn:hover {
    background: #9a78e9;
    color: white;
}
.trash-btn:hover {
    background: #9a78e9;
    color: white;
}
.trash-btn {
    background: #12148a;
    border: none;
    color: grey;
    padding: 1rem;
    cursor: pointer;
    font-size: 1rem; 
}

.todo-item {
    padding: 0rem 0.5rem;
}
.fa-trash, 
.fa-check {
    pointer-events: none;

}
.completed {
    text-decoration: line-through;
    opacity: 0.5;

}
.fall {
    transform: translateY(10rem);
    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: #12148a;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
    width: 12rem;
    padding: 1rem;
  }
  /* Arrow */
  .select::after {
    content: "\25BC";
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    background: #12148a;
    cursor: pointer;
    pointer-events: none;
  }