*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
    background-image: linear-gradient(120deg, #c3c96c, hsl(59, 56%, 44%));
    font-family: 'poppins';
    color: white;
    min-height: 100vh;
}

header {
    font-size: 1rem;
}

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: white;
    
}

form button {
    color: #c3c96c;
    background: white;
    cursor: pointer;
}

 form button:hover {
    background: #d7e422;
    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;
    align-items: center;
    justify-content: space-between;
    transition: all 1s ease;
 }

 .todo li {
    flex: 1;
 }

 .complete-btn, .trash-btn {
    background: #d7e422;
    border: none;
    color: white;
    padding: 1rem;
    cursor: pointer;
 }

 .trash-btn {
    background: #d11d1d;
 }

 .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;
 }

 select {
    border: none;
    outline: none;
    appearance: none;
    color:#c3c96c;
    width: 10rem;
    padding: 1rem;
    cursor: pointer;
 }

 .select::after {
    content: "\25BC";
    position: absolute;
    background: #d7e422;
    top: 0;
    right: 0;
    padding: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
 }

 .select:hover::after {
    background: white;
 }

 .select { 
    margin: 1rem;
    position: relative;
    overflow: hidden;
 }