
 body{
    background-color:#0f2a52;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0;
    padding: 0; 
}
body:hover{
    background-color:#123a70;
    box-shadow: rgba(0, 0, 0, 0,16),0 3px 6px rgba(0, 0, 0,0,23);
    transform: translate(0px,5px);

}
.box-container{
    background:white;
    position: relative;  
    width:500px;
    padding:25px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.4);
    text-align:center;
}
h1{
    font-size:50px;
    font-weight:bold;
    margin-top:10px;
    color: #cb416b;
}
.addTask{
    padding: 10px;
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:15px;
    font-size: 20px;
    color: #00035b;
}
#inputTask{
    padding:10px;
    color: #380238;
    font-size: 20px;
    width:300px;
    border:1px solid gray;
    border-radius:4px;
}
.addTask button{
    font-size: 20px;
    font-weight: bold;
    padding:8px 14px;
    background-color:#1e5eff;
    margin-left: 17px;
    color:white;
    border:none;
    border-radius:5px;
    cursor:pointer;
}
.addTask button:hover{
    background-color:#1747c9;
}

.arrow{
    font-size: 45px;
    color: #0f2a52;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 20px;   
    cursor: pointer;
}

#taskList li {
    display: flex; 
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1px;
    margin: 8px 0;
    border-radius: 5px;
    font-size:25px;
    gap: 1px;
    list-style: none;
    overflow: break-word;
    word-break: break-word;


  }

  #taskList  {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

.delete{
    background-color: red;
    font-weight:bold;
    font-size: 20px;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 30px;
    flex-shrink: 0;
}

.delete:hover{
    background-color: darkred;
}


 @media (max-width: 650px ) {
    .box-container{
        padding: 0;
        margin: 0;
        width:auto ;
    }
 }