/*
 Theme Name: Museder Blank Theme
 Theme URI: https://example.com/
 Author: Jerry Lin
 Author URI: https://example.com/
 Description: A minimal blank starter theme for custom development.
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: museder-blank-theme
 Requires at least: 6.0
 Tested up to: 6.7
 Requires PHP: 7.4
*/

/* Minimal reset and basic typography */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.6;
	color: #333;
}

