html{
    margin: 0;
    padding: 0;
    font-size: 24px;
    background-color: rgb(189, 209, 169);
  }
  
  .newspaper{
    font-size: 16px;
    font-family: Open Sans, sans-serif;
    background-color: #fff;
    height: 800px;
    width: 800px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
  }
  
  .name{
    font-size: 2rem;
    font-family: "Times New Roman", serif;
    text-align: center;
    color: #DB7093;
  }
  
  .date{
    text-align: center;
  }
  
  .name, .author{
    text-transform: uppercase;
  }
  
  .headline{
    font-size: 2em;
    font-weight: bold;
  }
  
  .sub-headline{
    font-weight: 100;
    font-size: 1.5em;
    font-style: italic;
  }
  
  .author{
    font-weight: bold;
  }
  
  .text{
    text-indent: 20px;
    line-height: 2em;
  }
  
  .text::first-letter{
    font-weight: bold;
    font-size: 2em;
    color: #DB7093;
  }
  