body {
  font-family: "Roboto";
  background-image: url("../images/stardust.png");
}

#container {
  width: 360px;
  margin: 50px auto;
  box-shadow: 0 0 3px rgba(0,0,0, 0.1);
  background: #f7f7f7;
}

h1 {
  background: #2980b9;
  color: #fff;
  margin: 0;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: normal;
}

.fa-plus {
  float: right;
}

.completed {
  color: gray;
  text-decoration: line-through;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  background: #fff;
  height: 40px;
  line-height: 40px;
  color: #666;
}

li:nth-child(2n) {
  background: #f7f7f7;
}

input {
  font-size: 18px;
  background: #f7f7f7;
  width: 100%;
  padding: 13px 13px 13px 20px;
  box-sizing: border-box;
  color: #2980b9;
  border: 3px solid rgba(0, 0, 0, 0);
}

input:focus {
  background: #fff;
  border: 3px solid #2980b9;
  outline: none;
}

input::placeholder {
  color: #a3a3a3;
}

span {
  background: #e13700;
  height: 40px;
  margin-right: 20px;
  text-align: center;
  color: #fff;
  width: 0px;
  display: inline-block;
  transition: 0.2s linear;
  opacity: 0;
}

li:hover span {
  width: 40px;
  opacity: 1;
}
