html {
	font-family: 'Roboto', sans-serif;
	background: #CC95C0;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to top, #7AA1D2, #DBD4B4, #CC95C0);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to top, #7AA1D2, #DBD4B4, #CC95C0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	background-repeat: no-repeat;
	height: 100%;
}

h1 {
	background-color: #2980e9;
	color: white;
	margin: 0;
	text-align: left;
	padding: 10px 20px;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: bold;
}

h1 span {
	float: right;
}

h1:hover{
	color: #3cff50;
	transition: 1s;
}

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

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

}

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

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

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

input {
	font-size: 18px;
	color: #2980e9;
	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-color: white;
	border: 3px solid #2980e9;
	outline: none;
}

#container {
	width: 360px;
	margin: 100px auto;
	border: 2px solid gray;
	background-color: #f7f7f7;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

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

