/* Global reset and font setup */
body {
    margin: 0;
    padding: 0;
    font-family: 'Kanit', sans-serif;
    background-color: #f5f5f5;
    text-align: center; /* Center inline content like text and images */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center block elements horizontally */
  }
  
  /* Container to keep content centered and readable */
  .hero-container,
  .blog-container {
    max-width: 800px;
    width: 90%;
    margin: 2rem auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Profile image styling */
  .profile-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    margin: 1rem 0;
  }
  
  /* Headings */
  h1, h2 {
    margin: 1rem 0;
  }
  
  /* Blog post list */
  .blog-container ul {
    list-style-type: none;
    padding: 0;
  }
  
  .blog-container li {
    margin: 0.5rem 0;
  }
  
  .blog-container a {
    text-decoration: none;
    color: #0077cc;
    font-weight: 500;
  }
  
  .blog-container a:hover {
    text-decoration: underline;
  }
  