/* general css [start] */
/* add global vars in root */
:root{
    --bg-color: #080809;
    --text-color: #9CA2AC;
    --title-color: #F7F6F3;
    --bg-title-color: #252628;
    --bg-category-color: #3f4041;
    --neon-color: #e6820f;
    --del-color: rgba(81, 12, 12, 0.187);
    --text-delete: rgb(224, 106, 106);
    --note-write-part: #e6820f10;
}
/* add fonts */
@font-face {
    font-family: Arial, Helvetica, sans-serif;
    src: url();
}
/* general stuff */
*{
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
/* general css [end] */