*{
    margin:0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    background-image: url("/c890e53b-b77c-4b73-a871-edae811ecede.jpeg");
    background-size: contain;
}
.container{
    height: 100vh;
    width: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
}
.main_content{
    width: 400px;
    background-color: transparent;
    backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 5px 5px 10px black ;
    padding-bottom: 20px;
    max-height: 400px;
    overflow-y: scroll;
}

.main_content::-webkit-scrollbar{
    display: none;
}

input{
    margin-left: 10px;
    padding: 0 10px;
}

#input_text{
    height:30px;
    width: 80%;
    border-radius: 20px;
    margin-left: 10px;
    background-color: white;
    margin-bottom: 15px;
}
li{
    border:1px solid black;
    /* height:30px; */
    width: 93%;
    margin-top: 10px;
    background-color: white;
    list-style-type: none;
    border-radius: 20px;   
    margin-left: 2px; 


}
.delete{
    background-color: rgb(246, 109, 109);
    border-radius: 10px;
    border:1px solid black;
    height: 30px;
    width: 50px;
    font-size: 15px;
}

#add{
    height:35px;
    width: 50px;
    background-color: lightgreen;
    border-radius: 10px;
}
h1{
    color:white;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.extend{
    background-color: transparent;
}
li {
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px auto;
}