/* 
 * Base CSS - Version 1.1
 * Last updated: 2024-01-XX
 * Basic reset and global styles
 */

/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: #f5f5f5;
}

img {
    max-width: 100%;
    height: auto;
} 