/*
Theme Name: Simple Blog Theme
Theme URI: https://example.com/simple-blog-theme
Author: Your Name
Author URI: https://example.com
Description: A clean and optimized WordPress blog theme with modern design
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simple-blog-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

