body {
    display: flex;
    flex-direction: column;
    align-items: center;
/*
    align-content:center;
    text-align:center;
    display:grid;
    place-items:center;
*/
}
main {
    width:100%;
    height:100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}
local-notes {
    height:100%;
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#note{
    flex-grow:1;
    width:100%;
    box-sizing: border-box;
    border:none;
    outline: none;
    padding:1rem;
    resize: none;

    background-color: var(--bg-2);
    color: var(--text);
    font-size: 1.1rem;
}
