.container {
    width: 80%;
    max-width: 800px;
    margin: auto;
    margin-left: 105px;
    text-align: left;
}

#add-note {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ffeb3b;
}

.note {
    background-color: #ffeb3b;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index:0;
}

.note textarea {
    width: 100%;
    height: 100px;
    border: none;
    background: none;
    resize: none;
    outline: none;
    font-family: Roboto, Arial;
    font-size: 20px;
}

.note .delete {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    color: red;
}
