body {
  font-family: 'Times New Roman', serif; /* Classic newspaper font */
  background-color: #f5f5dc; /* Light beige for aged paper effect */
  margin: 20px; /* Add some margin around the page */
}

.newspaper-container {
  width: 800px; /* Set a fixed width to mimic newspaper columns */
  margin: 0 auto; /* Center the container on the page */
  border: 1px solid #000; /* Add a border to define the page */
  padding: 20px; /* Add padding inside the container */
  background-color: #fff; /* White background for the content area */
}

.masthead {
  text-align: center; /* Center the newspaper title */
  margin-bottom: 20px;
}

.masthead h1 {
  font-size: 3.5em; /* Larger font for the main title */
  margin: 0;
  padding: 0;
  font-weight: bold; /* Bold title */
}

.masthead .date {
  font-size: 1.2em;
  margin-top: 5px;
}

.headline-section {
  display: flex; /* Use flexbox for headlines */
  margin-bottom: 20px;
  border-bottom: 1px solid #000; /* Add a line to separate sections */
  padding-bottom: 20px;
}

.main-headline {
  flex: 2; /* Main headline takes up more space */
  margin-right: 20px;
}

.secondary-headlines {
  flex: 1; /* Secondary headlines take up less space */
}

.headline-section h2 {
  font-size: 2.8em; /* Large font for the main headline */
  margin-bottom: 5px;
  font-weight: bold;
}

.headline-section h3 {
  font-size: 1.6em; /* Smaller font for secondary headlines */
  margin-bottom: 5px;
  font-weight: bold;
}

.digest-section {
  margin-bottom: 20px;
  border-bottom: 1px solid #000; /* Add a line to separate sections */
  padding-bottom: 20px;
}

.digest-headline h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}

.digest-article {
  margin-bottom: 15px;
}

.digest-article h4 {
  font-size: 1.1em;
  margin-bottom: 3px;
  font-weight: bold;
}

.articles-section {
  column-count: 2; /* Create two columns for the articles */
  column-gap: 20px; /* Add spacing between columns */
  text-align: justify; /* Justify text for newspaper look */
}

.article {
  margin-bottom: 20px;
}

.article h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  font-weight: bold;
}

.article p {
  line-height: 1.6; /* Adjust line height for readability */
}
