/*
Theme Name: My WordPress Theme
Theme URI: http://example.com/my-wordpress-theme
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme for demonstration purposes.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, responsive, blog
*/

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.sidebar {
    background: #f4f4f4;
    padding: 15px;
    margin: 15px 0;
}

h1, h2, h3 {
    color: #333;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}