*, *:before, *:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Indie Flower', cursive;
  background-color: rgba(245, 205, 28, 0.6);
}

.main-container {
  width: 80%;
  min-height: 35vh;
  margin: 8vh auto;
  text-align: center;
}

header {
  margin-bottom: 2em;
  font-family: 'Dancing Script', cursive;
  color: #112c58;
  font-size: 1.5rem;
  font-weight: 700;
}

.input-area {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: .5em;
}

.input-text {
  width: 60%;
  max-width: 450px;
  height: 35px;
  padding: .3rem .5rem;
  font-size: 18px;
  font-family: 'Domine', serif;
  color: #112c58;
}

.add-btn {
  height: 35px;
  width: 35px;
  border: none;
  background-color: #2867d7;
  padding: .3em;
  cursor: pointer;
}

.fa-plus-square {
  font-size: 26px;
  color: #c7defa;
  pointer-events: none;
}

.alert-text {
  color: red;
  display: none;
}

.todo-area {
  margin: 2.5em auto;
  width: 80%;
  max-width: 500px;
}

.added-todo {
  color: #112c58;
  border-bottom: solid 1px #2867d7;
  padding: .3em .4em;
  margin: .7em;
  text-align: left;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.completed-btn {
  width: 2em;
  height: 2em;
  background-color: #27dd27;
  color: #112c58;
  cursor: pointer;
}

.fa-check {
  font-size: 18px;
  pointer-events: none;
}

.added-todo {
  opacity: 1;
  transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  -webkit-transition: opacity .5s ease;
}

.reduce-opacity {
  opacity: 0;
}
/*# sourceMappingURL=style.css.map */