*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-container{
    width: 100%;
    height: 100vh;
    background: linear-gradient(#6464db , #974293);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    width: 400px;
    height: auto;
    position: absolute;
    border: 2px solid rgb(176, 193, 230);
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

.top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top h1{
    font-size: 30px;
    color: rgb(21, 69, 165);
}
.top img{
    width: 40px;
    margin-left: 20px;
}

.input-btn{
margin-top: 10px;
display: flex;
align-items: center;
justify-content: space-between;
background: #edeef0;
border-radius: 30px;
padding-left: 20px;


}

.input-btn input{
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    background: transparent;
}

.add-btn{
    padding: 10px;
    border: none;
outline: none;
color: white;
background-color: rgb(234, 113, 69);
cursor: pointer;
border-radius: 20px;
width: 30%;
}

ul li {
    margin-top: 10px;
    margin-left: 20px;
    font-weight: 200;
    user-select: none;
    cursor: pointer;
    list-style: none;
    position: relative;
}

li{
    display: flex;
    justify-content: space-between;
    border: 1px solid gray;
    padding: 8px;
    margin: 4px;
    border-radius: 15px;
    color: #2c2cd3;
    font-weight: 400;
    font-size: 20px;
    background: linear-gradient(rgb(229, 229, 146) , rgb(238, 104, 104));

}

ul{
    margin-right: 18px;
}

li button{
    padding: 5px;
    color: white;
    background-color: rgb(221, 56, 44);
    border-radius: 10px;
    cursor: pointer;
    border: none;
    padding: 7px;
}