* {
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(230, 230, 230);
}
.container {
    border: none;
    border-radius: 15px;
    background-color: rgb(156, 222, 252);
    height: 80vh;
    width: 600px;
    box-shadow: 4px 5px 6px;
    display: flex;
    flex-direction: column;
}
.header {
    text-align: center;
    padding: 10px;
    font-size: 3em;
    font-weight: 900;
    border-bottom: 0.5px solid white;
    margin-bottom: 20px;
}
.addTask {
    display: flex;
    justify-content: space-evenly;
}
input {
    padding: 10px;
    border-radius: 5px;
    width: 250px;
}
button:hover {
    border: 1px solid black;
    box-shadow: 2px 2px 2px;
}
button {
    background-color: rgb(244, 242, 153);
    color: rgb(11, 11, 11);
    padding: 4px;
    border-radius: 5px;
    width: 100px;
}
ul {
    list-style: none;
    padding: 15px;
}
li {
    display: flex;
    justify-content: space-between;
    border: 1px solid white;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: 7px;
}
.task-List {
    max-height: 50vh;
    overflow-y: auto;
    list-style: none;
    padding: 15px;
    flex: 1;
}