/* # DS CSS Style */

/* - Author: David Shin */
/* - Date: 20 NOV 2025 */

/* - PERSISTENT STYLING */
/* - RELATED TO PAGE STRUCTURE */
/* - EX: WORD WRAP & IMAGE POSITION */

/* ## Style `html` */
html {

    /* ### Set Word Break & Word Wrap */
    word-break: keep-all !important;
    overflow-wrap: break-word !important;

}

/* ## Style `img` */
img {

    /* ### Set Block */
    display: block !important;

    /* ### Center Image */
    margin-left: auto !important;
    margin-right: auto !important;

    /* ### Set Max Width */
    max-width: 90% !important;

}
