header{
    margin:30px;
    padding: 10px;
    background-color: #6643b5;
    color: #d5def5;
    


    border-radius: 25px;

    text-align: center;
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #8594e4;
    text-align: left;
}
input[type=text] {
    margin-left: 150px;
    width: 400px;
    height: 40px;

    background-color: #d5def5;

}
#submit-button{
    width: 100px;
    height: 50px;
    background-color: #6643b5;
    color: #d5def5;


    border-radius: 20px;


}
#submit-button:hover{
    box-shadow: 5px 5px #430f58;

}

/* this for border */
input[type=text] {
    border-radius: 15px;
    border-bottom:#6643b5 ;

}

.task-item{
    /* text-align: center; */

    font-size: 15px;
    color: #21397b;

    margin-top: 30px;
    margin-left: 180px;
    margin-right: 200px;


}

.delete-btn{
    padding: 7px;
    background-color: #6643b5;

   
}
.line{
   border-radius: 25px;
   padding: 4px;
   background-color: #6643b5;
   border-color: #6643b5;

   
}
@media (max-width: 600px){
    header{
        margin:10px;
        padding: 3px;
        font-size: 20px;
    }

    input[type=text] {
        margin-left: 50px;
        width: 290px;
        height: 40px;
    
        background-color: #d5def5;
    
    }
}





@media (min-width: 601px) and (max-width: 900px) {
    /* this is for header responsive for mobile */
    header{
        padding: 7px;
        
        margin-top: 30px;
        margin-bottom:30px ;
        margin-left: 60px;
        margin-right: 60px;
    }

    input[type=text] {
        margin-left: 100px;
        width: 375px;
        height: 40px;
    
        background-color: #d5def5;
    
    }


}

@media (min-width: 901px) and (max-width: 1200px){
    /* laptop styles */


    header{
        padding: 7px;
        
        margin-top: 30px;
        margin-bottom:30px ;
        margin-left: 90px;
        margin-right: 90px;
    }

    input[type=text] {
        margin-left: 150px;
        width: 550px;
        height: 40px;
    
        background-color: #d5def5;
    
    }
  }

  @media (min-width: 1201px) {
    /* desktop styles */


    header{
        padding: 7px;
        
        margin-top: 30px;
        margin-bottom:30px ;
        margin-left: 100px;
        margin-right: 100px;
    }

    input[type=text] {
        margin-left: 200px;
        width: 650px;
        height: 40px;
    
        background-color: #d5def5;
    
    }
  }