@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');

*{
    font-family: "Kalam", cursive;
    font-weight: 700;
    font-style: normal;
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    justify-content: center;
}

.head{
    margin: 5px;
    background-color: bisque;
    text-align: center;
    font-size: 20px;
    height: 30px;
    
}

.container{
    /* border: 2px solid red; */
    width: 70dvw;
    height: auto;
}

#inpt{
    padding: 5px;
    border: none;
    outline: none;
    width:100%;
    text-transform: capitalize;
}
#inpt::placeholder{
    color: black;
}
#btn{
    background-color: bisque;
    outline: none;
    margin: 2px;
    height: 30px;
    padding: 5px;
    cursor: pointer;
}

.inpt{
    height: auto;
    border: 2px solid black;
    display: flex;
    justify-content: space-between;
}

.list{
    margin: 10px;
    background-color:bisque;
    padding: 10px;
    height: auto;
}
.listitem{
    display: flex;
    justify-content: space-between;
    padding: 5px;
    margin: 10px;
    border: 2px solid black;
}

.plist{
    margin: 5px;
    text-transform: capitalize;
    height: auto;
    width: auto;
    overflow: auto;
}

#dlt{
    color: red;
font-size: 10px;
align-self:flex-end;
cursor:pointer;
}
