@media (max-width: 800px) {
  html {
    font-size: 10px;
  }
  #todo-header {
    height: 2rem;
    width: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../images/Landscape-Color.jpg");
    background-position: center;
  }
}

* {
  font-family: "Ubuntu", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: beige;
  height: 100vh;
  margin: 1rem;
}

#tasklist {
  height: 98vh;
  background: #189ab4;
  padding: 2rem;
  width: 80vw;
  margin: auto;
  border: 0.3rem solid #0e0246;
}

#tasklist #todo-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20vh;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("../images/Landscape-Color.jpg");
  background-position: center;
}

#tasklist #header {
  color: #0e0246;
  margin: 30px auto;
  font-size: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

#tasklist .fa-plus-square:before {
  font-size: 2rem;
}

#tasklist #list {
  margin: 3rem 1rem;
  text-align: center;
  justify-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#tasklist #list #add-btn {
  border-radius: 0.5rem;
  border: none;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px 0px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px 0px;
  width: 4rem;
  height: 4rem;
  background-color: lightsalmon;
  color: brown;
  padding: 0.5rem 0.8rem;
}

#tasklist #list #add-btn:hover {
  color: lightsalmon;
  background: brown;
}

#tasklist #list #list-input {
  border: none;
  color: cadetblue;
  font-size: 2rem;
  font-weight: 1000;
  text-align: center;
  height: 4rem;
  border-radius: 0.5rem;
  margin: 0 0.5rem;
  width: 70%;
}

#tasklist #list #list-input:focus {
  border: none;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#filter-options {
  margin: 0px 30px;
  height: 3.5rem;
}

.slide {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  opacity: 0.4;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

i {
  pointer-events: none;
}

.item {
  font-size: 2rem;
  margin: 0 auto;
  margin-top: 1rem;
  padding: 2% 2%;
  width: 70%;
  padding: 2rem 1rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #05445e;
  border: 1px #0e0246 solid;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.item .btn {
  padding: 0.3rem;
  border-radius: 0.8rem;
  border: none;
  position: absolute;
  height: 80%;
  width: 2.5rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.item .btn-complete {
  right: 6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: limegreen;
  color: beige;
}

.item .btn-complete:hover {
  color: limegreen;
  background-color: beige;
}

.item .btn-delete {
  background-color: red;
  color: maroon;
  right: 0;
}

.item .btn-delete:hover {
  color: red;
  background-color: maroon;
  right: 0;
}

.item .btn-edit {
  color: white;
  background-color: #000;
  right: 3rem;
}

.item .btn-edit:hover {
  color: #000;
  background-color: #fff;
}

.completed {
  text-decoration: line-through;
  opacity: 0.5;
}
/*# sourceMappingURL=style.css.map */