* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  font-weight: inherit;
  line-height: inherit;
  min-height: 100vh;
  background: url("./royal-blue-textured-background-shutterworx.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: fixed;
}

.mobile-github-button {
  display: none;
  text-align: center;
  margin-top: 1em;
  text-decoration: none;
}

header {
  padding: 0.6em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

header h1 {
  font-family: Audiowide;
  text-align: center;
  font-size: 350%;
  color: #fff;
}

form {
  min-height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form input,
form button {
  padding: 0.5em;
  font-size: 2rem;
  border: none;
  background-color: white;
}

form input {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

form input, form button {
  -webkit-box-shadow: 2px 4px 18px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 4px 18px rgba(0, 0, 0, 0.2);
}

form input:focus {
  outline: none;
}

form button {
  color: #292929;
  background-color: white;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

form button:hover {
  background-color: #214f7d;
  /* color: blue; */
}

.todo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.todo-list {
  min-width: 30%;
  list-style: none;
}

.todo {
  margin: 0.5rem;
  background-color: white;
  color: #292929;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 2px 4px 18px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 4px 18px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.todo li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.trash-btn, .complete-btn {
  background-color: #214f7d;
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1rem;
}

.trash-btn {
  background-color: red;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.todo-item {
  padding: 0rem 0.5rem;
}

.fa-trash, .fa-check {
  pointer-events: none;
}

.completed {
  text-decoration: line-through;
  opacity: 0.5;
}

.fall {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(8rem) rotateZ(20deg);
          transform: translateY(8rem) rotateZ(20deg);
  opacity: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  padding: 1rem;
}

.select {
  margin: 1rem;
  position: relative;
  overflow: hidden;
}

select {
  color: #292929;
  width: 10rem;
  cursor: pointer;
}

.select::after {
  content: '\25BC';
  position: absolute;
  background-color: #214f7d;
  top: 0;
  right: 0;
  padding: 1rem;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.select:hover::after {
  background-color: #292929;
  color: white;
}

#validation-toast {
  visibility: hidden;
  text-align: center;
  position: absolute;
  top: 80%;
  width: 15rem;
  background: grey;
  color: white;
  padding: 0.5em 1.5em;
  border-radius: 10px;
}

#validation-toast.show-toast {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2s;
  animation: fadein 0.5s, fadeout 0.5s 2s;
}

@media screen and (max-width: 850px) {
  form {
    margin-top: 3em;
  }
  form input {
    width: 80%;
  }
  form input, form button {
    padding: 0.5em;
    font-size: medium;
  }
  form input::-webkit-input-placeholder {
    font-size: medium;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
  }
  form input:-ms-input-placeholder {
    font-size: medium;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
  form input::-ms-input-placeholder {
    font-size: medium;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
  form input::placeholder {
    font-size: medium;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mobile-github-button {
    display: block;
  }
  header h2 {
    text-align: center;
    float: none;
    margin-top: 2em;
  }
  header nav {
    display: none;
  }
}

/* footer section styling */
footer{
  background: #111;
  padding: 15px 23px;
  color: #fff;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}
footer span a{
  font-family: Audiowide;
  color: #214f7d;
  text-decoration: none;
}
footer span a:hover{
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */