Margin, Padding, Border Example

Example 3.44 - Margin, Padding, Border - Example 3.44

 <aside>Drafted by Thomas Jefferson between June 11 and June 28, 1776, the Declaration of Independence is at once the nation's most cherished symbol of liberty and Jefferson's most enduring monument. </aside>
 <p>We hold these truths to be self-evident, that all men are created equal, that they are endowed by their Creator with certain unalienable Rights, that among these are Life, Liberty, and the pursuit of Happiness. That to secure these rights, Governments are instituted among Men, deriving their just powers from the consent of the governed. That whenever any Form of Government becomes destructive of these ends, it is the Right of the People to alter or to abolish it, and to institute new Government, laying its foundation on such principles and organizing its powers in such form, as to them shall seem most likely to effect their Safety and Happiness.
 </p>

In style element (<style>) within head element:

aside {
      text-align: left;
      font-size: 1.1rem;
      color: #003300;
      background-color: rgb(250,250,200);
      padding: 1rem;
      margin: 0.5rem;
      border-width: 2px;
      border-style: dashed;
      border-color: #990000;
     }
p {
     font-size: large;
     line-height: 1.5;
   }