/*
Theme Name: Basic Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A very basic WordPress theme with index and single templates.
Version: 13.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: basic-theme
*/

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
}

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

a:hover {
    text-decoration: underline;
}

.post {
    margin-bottom: 40px;
}

.post-title {
    margin-bottom: 10px;
}

.post-meta {
    font-size: 0.9em;
    color: #777;
}
