html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	font-family: 'Roboto', sans-serif;
	background: #7b4397; /* fallback for old browsers */
	background: -webkit-linear-gradient(
		to right,
		#dc2430,
		#7b4397
	); /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(
		to right,
		#dc2430,
		#7b4397
	); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
h1 {
	background-color: #53244d;
	color: white;
	margin: 0;
	padding: 10px 20px;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: normal;
}

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

li {
	background-color: #ffff;
	height: 40px;
	line-height: 40px;
	color: rgb(68, 67, 67);
}

li:nth-child(2n) {
	background-color: rgb(250, 225, 242);
}

input {
	font-size: 18px;
	background-color: rgb(250, 225, 242);
	width: 100%;
	padding: 13px 13px 13px 20px;
	color: #53244d;
	border: 3px solid rgba(0, 0, 0, 0);
}

input:focus {
	background-color: #ffff;
	border: 3px solid #53244d;
	outline: none;
}

input::-webkit-input-placeholder {
	color: #9c9c9c;
}
input::-moz-placeholder {
	color: #9c9c9c;
}
input:-ms-input-placeholder {
	color: #9c9c9c;
}
input:-moz-placeholder {
	color: #9c9c9c;
}

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

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

#container {
	width: 360px;
	margin: 100px auto;
	background-color: rgb(250, 225, 242);
	box-shadow: 3px 3px 5px 0px rgba(255, 255, 255, 0.2);
	-webkit-box-shadow: 3px 3px 5px 0px rgba(255, 255, 255, 0.2);
	-moz-box-shadow: 3px 3px 5px 0px rgba(255, 255, 255, 0.2);
}

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

.fa-plus {
	float: right;
}
