body {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    /* background-color: #46b430; */
    
}

.input-container{
    height: 20%;
    width: 100%;
    border-bottom: 1px solid black;
    text-align: center;
    background-color: blue;
    color: #fff;
}

.output-container{
    height: 80%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}
#taskInput {
    padding: 8px;
    width: 200px;
    border-radius: 5px;
    outline: 0;
    border: 0;

}
button {
    padding: 8px 12px;
    margin-left: 5px;
    outline: 0;
    border: 0;
    border-radius: 5px;
}

#taskList{
    width: 90%;
    font-size: 1.1rem;
}
ul {
    margin-top: 20px;
    padding-left: 20px;
}
li {
    margin: 8px 0;
    list-style: none;
    background: #f2f2f2;
    padding: 8px 12px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid black;
}
.deletebtn {
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}