
*{
margin: 0;
padding: 0;
font-family:'poppins', sans-serif;
box-sizing: border-box;
}
.container{
	width: 100%;
	min-height: 100vh;
	background: #edeff1;
	color: #000;
	padding-top: 4%;
	padding-left: 5%;
	padding-right: 5%;
	border-radius: 20px;
	
}

.container h1{
	display: flex;
	align-items: center;
	font-size: 35px;
	font-weight: 600;
	border: 1px;
	border-color: #000;
}

.container h1 img{ width: 60px; 
    padding: 5px 5px;
	margin: 30px 0 20px;
}

.container button img{
	width: 25px;
	margin-right: 8px;
}

.container button{
	display: flex;
	align-items: center;
	border-radius: 40px;
	cursor: pointer;
}

.input-box{
	position: relative;
	width: 100%;
	max-width: 500px;
	min-height: 150px;
	background: #fff;
	color: #333;
	padding: 20px;
	margin: 20px 0;
	outline: none;
	border-radius: 5px;
	

}

.input-box img{
	width: 25px;
	position: absolute;
	bottom: 15px;
	right: 15px;
	cursor: pointer;
}




img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.todo-app{
width: 100%;
max-width: 540px;
background: #fff;
margin: 100px auto 20px;
padding:40px 30px 70px;
border-radius: 20px;
}

.todo-app h2{
color: #002765;
display: flex;
align-items: center;
margin-bottom: 20px;
}

.todo-app h2 img{
width: 30px;
margin-left: 10px;
}

.todo-app h3{
color: #002765;
display: flex;
align-items: center;
margin-bottom: 20px;
}

.todo-app h4{
color: #002765;
display: flex;
align-items: center;
margin-bottom: 20px;
}


.row{
display: flex;
align-items: center;
justify-content: space-between;
background: #edeef0;
border-radius: 30px;
padding-left: 20px;
margin-bottom: 25px;
}

input{
flex: 1;
border: none;
font-size: 16px;
outline: none;
background: transparent;
padding: 10px;
}

button{
border: none;
outline: none;
padding: 16px 30px;
background: #d15d57;
color: #fff;
font-size: 16px;
cursor: pointer;
border-radius: 30px;

}
btn{
border: none;
outline: none;
padding: 16px 90px;
background: #637987;
color: #fff;
font-size: 16px;
cursor: pointer;
border-radius: 30px;
position: absolute;

}

ul li{
list-style: none;
font-size: 17px;
padding: 12px 8px 12px 50px;
user-select: none;
cursor: pointer;
position: relative;
}

ul li::before{
content: '';
position: absolute;
height: 28px;
width: 28px;
border-radius: 50%;
background-image: url(images/unchecked.png);
background-size: cover;
background-position: center;
top:12px;
left: 8px;
}

ul li.checked{
color: #555;
text-decoration: line-through;
}

ul li.checked::before{
background-image: url(images/checked.png);
}

ul li span{
position: absolute; 
right: 0;
top: 5px;
width: 40px;
height: 40px;
font-size: 22px;
color: #555;
line-height: 40px; 
text-align: center;
border-radius: 50%;
}

ul li span:hover{
 background: #edeef0;
}
.footer {
  text-align: center;
  padding: 0px 0;
}
.footer p {
  font-size: 14px;
  line-height: 25px;
  color: #000;
}

form{
background: #edeff1;
display: flex;
width: 100%;
border-radius: 30px;
}

form input{
border: 0;
outline: none;
padding: 20px 20px;
height: 50px;
width: 400px;
font-size: 16px;
}
 
form button{
background: #289ed9;
border: none;
outline: none;
height: 50px;
width: 80px;
cursor: pointer;
border-radius: 30px;
padding: 12px 18px 12px;

}

span{
color: #d15d57;
margin-top: 10px;
display: block;
} 
