/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
  }
  
  /* Link Styling */
  a {
    color: #da0303;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  
/* Header Section */
header {
  background-color: #000; /* Black background */
  padding: 1rem;
}

.header-banner {
  text-align: center;
  margin-bottom: 1rem;
}

.site-title {
  color: #FF0000; /* Bold red letters */
  font-weight: bold;
  font-size: 2.5rem;
  margin: 0.2rem 0;
}

.site-intro {
  color: #cccccc;
  font-size: 1rem;
  margin: 0;
}

/* Navigation Styling */
header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

header nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
}

header nav ul li a:hover {
  text-decoration: underline;
}
  
  /* Main Content */
  main {
    padding: 2rem;
  }
  
  /* Blog List Layout */
  .blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  /* Post Preview Block */
  .post-preview {
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s;
  }
  .post-preview:hover {
    transform: translateY(-5px);
  }
  .post-date {
    font-size: 0.9rem;
    color: #bbbbbb;
  }
  
  /* Single Post Layout */
  .post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  /* Footer Styling */
  footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
  }