/* Reset some default browser styles */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, code {
    margin: 0;
    padding: 0;
  }

  body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5f5;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }
  
  .navbar {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .nav-item {
    margin: 0 15px;
    text-transform: uppercase;
    font-weight: bold;
    color: #555;
    text-decoration: none;
  }

  .nav-item > a {
    color: #555;
    text-decoration: none;
  }

  .nav-item > a:hover {
color: #000;
    text-decoration: none;
  }
  
  .nav-item:hover {
    color: #000;
    text-decoration: none;
  }
  
  .article {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .article h2 {
    margin-bottom: 10px;
  }
  /* Style paragraphs within articles */
  .article p {
    margin-bottom: 10px; /* Reduce the margin between paragraphs */
    line-height: 1.6; /* Adjust line height for better readability */
  }

  /* Styles for hyperlinks */
  a {
    color: #007bff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Styles for lists */
  /* Style the outer unordered (ul) and ordered (ol) lists */
ul, ol {
  margin-left: 0; /* Remove the default margin */
  padding-left: 20px; /* Add padding for indentation */
  list-style-position: inside; /* Place the list marker inside the content */
}

/* Style the list items */
ul li, ol li {
  margin-bottom: 5px; /* Reduce the margin between list items */
  line-height: 1.4; /* Adjust line height for better readability */
}

ol li::before {
  content: counter(li) ". "; /* Use numbers followed by a period */
  font-weight: bold; /* Make numbers bold (adjust as needed) */
  margin-right: 5px; /* Add spacing between marker and content */
}


  .post-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .post-image > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  
  code {
    font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
    background-color: #f0f0f0;
    padding: 2px 4px;
    border-radius: 4px;
  }

  .footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ccc;
    color: #777;
  }
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    .container {
      padding: 10px;
    }
  }
  
  /* Add more media queries for different screen sizes if needed */
  