html {
  font-size: 24px;
}

body {
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.newspaper {
  max-width: 600px;
  background-color: white;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

.name {
  font-size: 2.5rem;
  font-family: 'Times New Roman', serif;
  text-transform: uppercase;
  border-bottom: 4px double black;
  margin-bottom: 5px;
  text-align: center;
}

.date {
  text-align: center;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.headline {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.1;
}

.sub-headline {
  font-weight: 100;
  font-size: 1.5em;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.author {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.text {
  text-indent: 20px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px;
}

.text::first-letter {
  font-weight: bold;
  font-size: 2.5em;
  float: left;
  margin-right: 8px;
  line-height: 1;
}