body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(50, 50, 205);
    height: 100vh;
}
.main{
    border: none;
    height: auto;
    width: 39vw;
    box-shadow: 4px 5px 6px 2 rebeccapurple;
     border: 1px solid gray;
    background-color: white;
     height: auto;
     border-radius: 10px;
}
.main h1{
    text-align: center;
    border-bottom: 1px solid rgb(159, 136, 136);
    font-size: 2.5em ;
    font-weight: 690;
    padding-bottom: 8px;
    margin-bottom: 29px;
}

.todoInput{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 50px;
    
}
.todoInput #input{
    width: 68%;
    padding: 8px;
    border: 2px solid  rgb(50, 50, 205);
    border-radius: 4.5px;
    font-size: 16px;
    font-weight: 545;
}
#addTask{
    background-color:  rgb(83, 83, 185);
    border-radius: 4.5px;
    color: white;
    font-weight: 700;
    border: none;
}
.main #result{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
}
#result  li{
    padding: 7px;
    margin-bottom: 16px;
    border: 1px solid  rgb(83, 83, 185);
    border-radius: 5px;
    width: 91%;  
    display: flex;
    justify-content: space-between;
    float: inline-end;
}
#result li button{
    color: white;
    justify-content: space-around;
    float: inline-end;
    background-color:  rgb(83, 83, 185);
    border-radius: 6px;
    padding: 5px;
    border: none;
    font-weight: 650;
 }