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

body {
  background-image: url(water_wallpaper.jpg);
  background-repeat: no-repeat;
  background-size: 2064px 1375px;
  background-position: center;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
}

header {
  color: rgb(78, 94, 184);
  font-size: 3rem;
  text-shadow: 5px 7px #f7e0e0;
}

header,
form {
  min-height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

form input,
form button,.button_list {
  padding: 0.5rem;
  font-size: 2rem;
  border: none;
  background: white;
  border-radius: 7px;
  box-shadow: 5px 11px #7b8ddd;
}

form button{
  color: #98caeb;
  background: #f7fffe;
  cursor: pointer;
  transition: all 0.5s ease;
}

.button_list:hover,form button:hover {
  background: #98caeb;
  color: white;
}

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

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

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

.button_list{
  color: #85b9db;
  background: #f7fffe;
  margin:2px auto;
  border-radius: 20%;
  box-shadow: none;
}

.filter-todo {
  padding: 1rem;
  
}
.todo li {
  flex: 1;
 
}

.trash-btn,
.complete-btn {
  background: #463bdb;
  color: white;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  font-size: 1rem;
}
.complete-btn {
  background: rgb(18, 219, 169);
}
.todo-item {
  padding: 0rem 0.5rem;
}

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

.fall {
  transform: translateY(10rem) rotateZ(20deg);
  opacity: 0;
}

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

/* 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;
  font-size: 15px;
}

/* Custom Select */
.select {
  margin: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 5px 10px #559ef1;
}

select {
  color: #ff6f47;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  width: 12rem;
}

/* Arrow */
.select::after {
  content: "\25BC";
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  background: #ff6f47;
  cursor: pointer;
  pointer-events: none;
} 

/* Transition */
.select:hover::after {
  transform: scale(1.5);
}

a img{
  margin: 0 5px;
  width: 60px;
  opacity: 0.4;
}
.contact{
  position: absolute;
  top: 204px;
}

@media only screen and (max-width: 700px) {
  form {
     flex-direction: column;
  }
  .first, .todo-input{
    width: 380px;
  }
} 

@media only screen and (max-width: 500px) {
  .first, .todo-input{
    width: 360px;
  }
} 