html {
  font-size: 24px;
}

body {
  background-color: lightblue;
}

.newspaper {
  background-color: white;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  margin: 100px auto 0;
  max-width: 1200px;
  border-radius: 20px;
  box-shadow: 5px 5px rgba(128, 128, 128, 0.5);
  padding: 20px;
}

.name, .date, .headline, .sub-headline, .author {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin: 0 0 10px;
}

.name {
  font-size: 2rem;
  text-transform: uppercase;
  font-family: Times New Roman, serif;
}

.headline {
  font-size: 2em;
}

.sub-headline {
  font-style: italic;
  font-weight: 100;
  font-size: 1.5em;
}

.author {
  font-weight: bold;
}

.text {
  text-indent: 20px;
  line-height: 2em;
}

.text::first-letter {
  font-size: 2em;
}

#further-reading {
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  background-color: black;
  color: white;
  text-align: center;
  font-size: 1.5em;
  padding: 10px;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

#further-reading:hover {
  background-color: rgb(63, 63, 63);
}

#egg {
  color: lightblue;
}