* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  overflow: auto;
}

/*top image/hero text */
.hero-image {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("img/bg1.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("img/bg1.jpg");
  min-height: 30vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px #000000;
}

.hero-text h1 {
  font-size: 55px;
  text-shadow: 2px 4px #000000;
}

#demo {
  position: relative;
  color: #fff5ff;
  font-size: 30px;
  font-family: 'Lobster', cursive;
  text-shadow: 2px 2px #000000;
}

.clear {
  width: 30px;
  height: 30px;
  position: relative;
  display: inline-block;
  left: 5px;
  top: 5px;
}

.clear i {
  font-size: 30px;
  color: #fff8ff;
}

.clear i:hover {
  cursor: pointer;
  text-shadow: 1px 3px 5px #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #8f00a1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#mybtn {
  position: absolute;
  display: inline-block;
  right: 5px;
  top: 5px;
  border-radius: 10px;
  background: #8f00a1;
  border: none;
}

/* content */
.content {
  background-color: #fff8ff;
  min-height: 65vh;
  overflow: auto;
}

#placeholder {
  color: #929292;
  position: relative;
  top: 20px;
  text-align: center;
  font-size: 20px;
}

.gone {
  display: none;
}

.item {
  width: 100%;
  background-color: #fff8ff;
  height: 45px;
  min-height: 45px;
  position: relative;
  font-weight: bold;
  border-bottom: 1px solid rgba(182, 0, 199, 0.226);
  list-style: none;
  margin-top: 20px;
}

.item i.co {
  position: absolute;
  font-size: 25px;
  padding-left: 5px;
  left: 15px;
  top: 10px;
}

.item i.co:hover {
  cursor: pointer;
  color: green;
}

.item p.text {
  position: absolute;
  padding: 0;
  margin: 0;
  font-size: 20px;
  left: 50px;
  top: 5px;
  background-color: #fff8ff;
  max-width: 285px;
}

.item i.de {
  position: absolute;
  font-size: 25px;
  right: 15px;
  top: 10px;
}

.item i.de:hover {
  color: #af0000;
  cursor: pointer;
}

/* addto */
/* ------------ add item ------------ */
.add-to-do {
  position: relative;
  width: 100%;
  min-height: 5vh;
  padding-left: 10px;
  background-color: #FFF;
  border-top: 1px solid rgba(137, 0, 150, 0.13);
  z-index: 99;
}

.add-to-do i {
  position: absolute;
  font-size: 40px;
  color: #8f00a1;
}

.add-to-do input {
  position: absolute;
  left: 50px;
  min-height: 5vh;
  width: 310px;
  background-color: transparent;
  border: none;
  font-size: 20px;
  padding-left: 10px;
}

.add-to-do input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #8e00a1;
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
}

.add-to-do input::-moz-placeholder {
  /* Firefox 19+ */
  color: #4162f6;
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
}

.add-to-do input:-ms-input-placeholder {
  /* IE 10+ */
  color: #4162f6;
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
}

.add-to-do input:-moz-placeholder {
  /* Firefox 18- */
  color: #4162f6;
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
}

/* classes */
.fa-check-circle {
  color: #6eb200;
}

.lineThrough {
  text-decoration: line-through;
  color: #ccc;
}

/* media queries */
@media only screen and (min-width: 1200px) {
  .item i.de {
    position: relative;
  }
}

@media only screen and (max-width: 1200px) {
  #mybtn {
    max-width: 115px;
    font-size: 12px;
  }
}

@media only screen and (max-height: 850px) {
  .hero-text h1 {
    font-size: 40px;
  }
  .hero-text p {
    font-size: 14px;
  }
  #demo {
    font-size: 24px;
  }
  #mybtn {
    max-width: 98px;
    font-size: 10px;
  }
}

@media only screen and (max-height: 710px) {
  .hero-text h1 {
    font-size: 30px;
  }
  .hero-text p {
    font-size: 12px;
  }
  #demo {
    font-size: 20px;
  }
  .add-to-do i {
    font-size: 30px;
  }
  #mybtn {
    max-width: 84px;
    font-size: 8px;
  }
}
/*# sourceMappingURL=style.css.map */