/*Just Type:-<link rel="stylesheet" href="../article.css"> to include css to articles*/
/* Article Styling */
    article {
      max-width: 800px;
      margin: 40px auto;
      padding: 20px;
      background-color: #2D2D34; /* Secondary Dark */
      color: #ECECEC;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
      text-align: left;
    }
    article header, article footer {
      text-align: center;
    }
    article h2 {
      margin-top: 0;
    }
    article h3 {
      margin-bottom: 5px;
    }
    article p, article li {
      line-height: 1.6;
    }
