/*
Theme Name: Custom Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: My first custom WordPress theme built from scratch.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-theme
*/


html, body {
  background: black !important;
  color: white !important;
}
/* Layout system */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header,
.site-footer {
  background: #111;
}

.site-header {
  padding: 30px 0;
}

.site-footer {
  padding: 20px 0;
  margin-top: 60px;
  font-size: 14px;
  text-align: center;
}

.site-main {
  padding: 60px 0;
}

.site-title {
  margin: 0;
  font-size: 28px;
}
article {
  margin-bottom: 50px;
}

.entry-content {
  line-height: 1.7;
}

.entry-content p {
  margin-bottom: 20px;
}


