body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(149, 194, 222);
}
.container{
    border: none;
    border-radius: 15px;
    background-color: rgb(252, 156, 174);
    height: auto;
    width: 90%;
    max-width: 400px;
    box-shadow: 4px 5px 6px;
}
.header{
    text-align: center;
    padding: 10px;
    font-size: 1.7em;
    font-weight: 900;
    border-bottom: 0.5px solid white;
    margin-bottom:20px;
}
.addTask {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}



input {
    padding: 7px;
    border-radius: 5px;
}
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;

}
ul{
    list-style: none;
    padding: 50px;
}
li{
   display: flex; 
   justify-content: space-between;
   border: 1px solid white;
   border-radius: 5px;
   padding: 8px;
   margin-bottom: 7px;
}
@media (max-width: 600px) {
    .addTask {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    input {
        width: 80%;
    }

    button {
        width: 50%;
    }

    ul {
        padding: 20px;
    }

    li {
        flex-direction: column;
        align-items: center;
    }
}

