body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: bisque;
}
.container_heading{
    display: flex;
    justify-content: center;
    align-items: center;
}
.image_container {
    height: 20px;
    width: 20px;
   }
   
   .notes-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
   }
   #add-note-button{
    background-color: rgb(243, 95, 119);
    color: #f7f7f7;
    border: 1px solid white;
    border-radius: 10px;
    margin: 5px;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
}
.note {
    background-color: rgb(243, 95, 119);
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    width: 200px;
    height: 200px;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: relative;
    font-family: Georgia;
}
.note:hover{
    background-color: pink;
}

.note textarea {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    outline: none;
    resize: none;
    font-size: 14px;
    font-family: inherit;
}

.note .delete-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ff5e5e;
    border: none;
    border-radius: 50%;
    color: white;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

