*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.container{
    width: 100%;
    height: 100vh;
    background:linear-gradient(135deg,#cf9aff,#95c0ff);
    color: #fff;
    padding-top: 7%;
    padding-left: 10%;
    overflow-y: auto;
}

.container h1{
    display: flex;
    align-content: center;
    font-size: 35px;
    font-weight: 300;
}

.note-ico{
    width: 40px;

}

.edit-img{
    width: 24px;
    margin-right: 8px;
    /* background-color: black; */
}

.container button{
    display: flex;
    align-items: center;
    background: linear-gradient(#9218fdd9,#561094d7);
    padding: 15px 25px;
    color: #fff;
    font-size: 16px;
    border: 0;
    outline: 0;
    border-radius: 40px;
    margin: 30px 0 20px;
    cursor: pointer;
}

.notes{
    margin-right: 10px;
}

#notes{

    position: relative;
    width: 100%;
    max-width: 500px;
    min-height: 150px;
    background:#fff;
    padding: 20px;
    margin: 20px 0;
    outline: 0;
    border-radius: 5px;
    border: 1px solid black;
    color: black;

}

#delet-ico {
    position: absolute;
    bottom: 5px; /* Adjust this value to fit your design */
    right: 5px; /* Adjust this value to fit your design */
    width: 25px;
    cursor: pointer;
}
  

