* {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9vh;
  }
  .header {
    display: flex;
    justify-content: center;
    height: 9vh;
    margin-top: 13px;
    overflow: hidden;
  }
  
  .container1 {
    height: 20vh;
    width: 100%;
    overflow-y: hidden;
  }

  .container1::before {
    content: "";
    background-color: #e7f7fa;
    position: absolute;
    z-index: -1;
    opacity: 0.8;
    display: flex;
    flex-wrap: wrap;
    height: 12vh;
    width: 100%;

  }
  .task {
    width: 50%;
    border: 2px solid;
    border-radius: 20px;
    margin-right: 5px;
    padding: 10px;
    outline: none;
    font-size: 1.15rem;
  }
  .Btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
	  height: 50px;
	  width: 50px;
	  color: #fff;
    background-image: linear-gradient(to right, #4458dc 10%, #854fee 90%);
    border: none;
    transition: .5s;
    margin: 0.25rem;
    cursor: pointer;
  }
  .Btn:hover {
    opacity: 0.7; 
  }

  /* Container2 ki css  */
  .container2 {
  width: 100%;
	height: 70vh; 
  display: flex;  
  }

.container2::after{
  content: "";
  position: absolute;
  background: url(todo.gif) ;
  background-color: #FDF6F0;
  background-repeat: no-repeat;
  background-size: 500px 500px;
  background-position: right ;
  width: 100%;
  height: 70vh;
  z-index: -1;
  opacity: 0.8;
  top: 20vh;

} 
.container2::before{
  content: "";
  position: absolute;
  background: url(title1.png) ;
  background-color: #FDF6F0;
  background-repeat: no-repeat;
  /* background-size: 400px 500px; */
  background-position: left ;
  width: 100%;
  height: 70vh;
  z-index: -1;
  opacity: 1;
  top: 20vh;

}

/*container ki css*/ 
#cont{
  margin: 0px auto;
}
/* #cont::-webkit-scrollbar{
display: none;
} */
.container{
	margin-top: 2rem;
  width: 100%;
  flex-direction: column;
}

.item{
	padding: 0.5rem;
	border-bottom: 4px solid #fff;
	margin-bottom: 1.5rem;
	border: 2px solid black;
  background-color: #FCD8D4;
	/* width: 33%; */
}
input[type=checkbox]{
  visibility: hidden;
}
.item_input{
	outline: none;
	border: none;
	color: #000;
	font-size: 1.4rem;
	width: 50%;
  margin-left: 5px;
  padding-left: 4px;
}


.edit,.down{
	background: none;
	outline: none;
	border: none;
	color: lime;
	font-size: 1.4rem;
	font-family: 'Hind', sans-serif;
	margin: 0 0.5rem;
	cursor: pointer;
}
 .remove{
	background: none;
	outline: none;
	border: none;
	/* color: #E00; */
	color: #5be2fa;
	font-size: 1.6rem;
	font-weight: 600;
	font-family: 'Hind', sans-serif;
	cursor: pointer;
	margin: 0 0.5rem;
	
	
}
.check_box{
	width: 10%;
	height: 15px;
	font-size: 1.4rem;
}
.form{
  border: 2px solid transparent;
  height: 200px;
  width: 100%; 
   display: none; 
  background-color: #FDF6F0;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.save{
  width: 150px;
  background-color: rgba(0, 128, 0, 0.651);
  border: none;
  margin-bottom: 4px;
}
.forminput{
  width: 100%;
  height: 140px;
  outline: none;
  text-align: start;
  margin: 5px;
}

.box3{
  width: 50%;
  display: flex;
  flex-direction: column;
}
.box4{
  width: 100%;
  height: 180px;
  /* border: 2px solid black; */
  /* padding-top: 2px; */
  margin: 4px;
}

.display{
  display:flex;
  height:200px;
  width:100%;
}
.btn1,.btn2,.btn3{
  background-color: #F8E2CF;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid;

}
.btn1{
  height: 30px;
  width:25%;
}
.btn2{
  height: 30px;
  width:28%;
}
.btn3{
  height: 28px;
  width:45%;
}
.btn:hover{
  opacity:0.5;
  background-color: yellow;
}
/* container3 ki css  */
p{
  font-size: 1.9rem;
}
.container3{
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10vh;
}
.Butn{
  width: 60%;
  height:30px;
  border: 0;
  opacity: 0.7;
  background-color: #CDBBA7;
}
.Butn:hover{
  opacity: 1;
  border:2px solid rgb(248, 213, 149);
}



/* media query for responsiveness  */

@media(max-width:1300px) {
  .container2::before{
    background-image: none;
  }
  .container2::after{
    background-image:none;
  }
}

@media(max-width:940px) {
    
  .container2{
    width: 100%;
  }
  .item {
      margin-top: 20px;
    }
    .container2::before{
      background: none;
    }
    .container2::after{
      background-position: right;
    }
   

  }


  

