/* Reset some default styles */
body, h1, h2, h3, p, img {
    margin: 0;
    padding: 0;
  }
  
  /* Set some basic styles */
  body {
    line-height: 1.6;
    color: #333;
  }
  
  /* Center the article container */
  .main {
    display: flex;
    justify-content: center;
  }
  
  /* Define the styles for the article container */
  .article-container {
    max-width: 100%;
    padding: 50px;
    text-align: justify;
  }
  
  /* Define the styles for the article */
  .article {
    margin-bottom: 30px;
  }
  
  /* Style the article title */
  .article h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
  }
  
  /* Style the article date */
  .article .date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    text-align: center;

  }
  
  /* Style the article main text */
  .article .text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
  }
  
/* Style the article image */
.article img {
  max-width: 100%;
  height: auto;
  display: block; /* Set the display to "block" to remove any default inline spacing */
  margin: 0 auto; /* Set the left and right margins to "auto" to horizontally center the image */
  padding-top: 1em;
  padding-bottom: 1em;

}

.article li{
  
  list-style-position:inside;
  padding-left: 3em;
}

  
  /* Responsive adjustments */
  @media screen and (max-width: 896px) {
    .article-container {
      padding: 10px;
    }
    .article h2 {
      font-size: 24px;
    }



    .article img {
      margin-bottom: 10px;
    }
  }
