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

body {
    background-image: linear-gradient(to right, #ff9a9e, #fad0c4, #fbc2eb);
    font-family: "JetBrains Mono", sans-serif;
    min-height: 100vh;
}
header {
    font-size: 2.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-color: white;
}

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

form button:hover {
    
    color: white;
    background-color: #ff9a9e;
}

.todo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.todo-list {
    min-width: 30%;
    list-style: none;
}

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

 .todo li {
    flex: 1;
}

.trash-btn,
.complete-btn {
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1rem;
}

.fa-trash,
.fa-check {
    pointer-events: none;
}

.trash-btn{
    background-color: #ff6b6b;
}

.complete-btn {
    background-color: #77dd77;
}

.todo-item {
    padding: 0rem 0.5rem;
}

.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: #ff6f47;
  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-color: #ff9a9e;
  cursor: pointer;
  pointer-events: none;
  transition: all 0.5s ease;
}

.select:hover:after {
    color: #ff9a9e;
    background-color: white;
}