body{
	font-family: Roboto;
	background: #00d2ff;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #3a7bd5, #00d2ff);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #3a7bd5, #00d2ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
h1{
	background: #2980b9;
	color: white;
	font-weight: normal;
	margin: 0;
	padding: 10px 20px;
	text-transform: uppercase;
	font-size: 24px; 
}
li{
	background: #fff;
	height: 40px;
	line-height: 40px;
	color: #444;
}
li:nth-child(2n){
	background: #F7F7F7;
}
input{
	color: #2980b9;
	font-size: 18px;
	background: #f7f7f7;
	width: 100%;
	padding: 13px 13px 13px 20px;
	box-sizing: border-box;
	border: 3px solid rgba(0,0,0,0);
}
input:focus{
	background: white;
	border: 3px solid;
	outline: none;
}
ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
span{
	background: #e74c3c;
	height: 40px;
	margin-right: 20px;
	text-align: center;
	color: white;
	width: 0;
	display: inline-block;
	opacity: 0;
	transition: 0.3s linear;
}
li:hover span{
	width: 40px;
	opacity: 1.0;
}
#container{
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	width: 360px;
	margin: 100px auto;
	background: #F7F7F7;
}
.completed{
	color: grey;
	text-decoration: line-through;
}
.fa-plus{
	float: right;
}