body {
	font-family: Roboto;
	background: -webkit-linear-gradient(90deg, #bfced1dc 10%, #eeeee5d5 90%);
	/* Chrome 10+, Saf5.1+ */
	background: -moz-linear-gradient(90deg, #bfced1dc 10%, #eeeee5d5 90%);
	/* FF3.6+ */
	background: -ms-linear-gradient(90deg, #bfced1dc 10%, #eeeee5d5 90%);
	/* IE10 */
	background: -o-linear-gradient(90deg, #bfced1dc 10%, #eeeee5d5 90%);
	/* Opera 11.10+ */
	background: linear-gradient(90deg, #bfced1dc 10%, #eeeee5d5 90%);
	/* W3C */
}

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


h1 {
	background: #2980b9;
	color: white;
	margin: 0;
	padding: 10px 20px;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: normal;
	border-top-left-radius: 15px;
}

.fa-plus {
	float: right;
}




li {
	background: rgba(19, 152, 156, 0.199);
	height: 40px;
	line-height: 40px;
	color: #666;
}

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

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

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

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

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

#container {
	width: 360px;
	margin: 100px auto;
	background: #f7f7f7;
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
	border-bottom-right-radius: 15px;
	border-top-left-radius: 15px;
}

li:last-child {
	border-bottom-right-radius: 15px;
	/* border-bottom-left-radius: 12px; */

}

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