* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background-color: 	#f5f7fa;
}

.main {
    width: 60%;
    margin: auto;
    min-height: 40vh;
    /* background-color: aqua; */
    margin-top: 100px;
    position: relative;
}

.head {
    text-transform: capitalize;
    width: 100%;
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head h2 {
    font-size: 3.5vw;
}

.addTask {
    display: flex;
    align-items: center;
    justify-content: center;
}

input {
    padding: 15px 5px;
    border-radius: 100px;
    width: 50%;
    padding-left: 20px;
    outline: none;
    border: 2px solid #ccc;
}
.input:focus{
    border: 2px solid	#0077ff;
}

button {
    padding: 15px 18px;
    font-size: 19px;
    border: none;
    margin-left: 20px;
    border-radius: 10px;
    background-color: #0077ff;
    color: #ffffff;
}
button:hover{
    background-color: #005fcc;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 20px;
    position: relative;
}

li {
font-size: 30px;
padding: 0 10px;
list-style: none;
margin-bottom: 20px;
background-color: 	#ffffff;
width: 100%;

}

.ri-close-line{
    position: absolute;
    right: 10px;
    /* top: 8px; */
    border-radius: 10px;
    margin-top: 8px;
    
}
.ri-close-line:hover{
    background-color: #ff4d4f;
}

ul li.check span{
    text-decoration: line-through;
    /* color: 	#888; */
}

ul li::before{
    font-family: "remixicon"; /* MUST be set */
  content: "\EB7D";          /* or use HTML entity in HTML */
  margin-right: 10px;
  font-size: 25px;
  color: 	#ff4d4f;
}

ul li.check::before {
  font-family: "remixicon"; /* MUST be set */
  content: "\EB81";          /* or use HTML entity in HTML */
  margin-right: 10px;
  font-size: 25px;
  color: 	#ff4d4f;
}
::before:hover{
    color: 	#cc0000;
}






