/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
  }
  
  /* Cover Image Section */
  .cover-container {
    position: relative;
    height: 33vh; /* Cover image takes up one-third of the screen height */
    overflow: hidden;
  }
  
  .cover-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire container */
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; /* Places the image behind other content */
  }
  
  /* Article Content */
  .main-article {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 20px;
    max-width: 800px; /* Adjust the width to maintain readability */
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 33vh; /* Push content below the cover image */
  }
  
  .article-header {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .article-header h1 {
    font-size: 2.5rem;
    margin: 0;
  }
  
  .article-header time {
    display: block;
    margin-top: 5px;
    font-size: 1rem;
    color: #717279;
  }
  
  /* Article Text Section */
  section {
    margin-top: 20px;
  }
  
  p {
    margin-bottom: 1em;
  }
  
  /* Footer Content */
  footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .main-article {
      padding: 15px;
      max-width: 90%;
    }
  
    .article-header h1 {
      font-size: 2rem;
    }
  }
  