An H1 element, 30 px from the left side due to the margin on the BODY element

A P element that should be 60px from the left side (BODY margin + P margin). Here's the style sheet:

  BODY {
    margin-left: 30px;
  }

  P {
    margin-left: 30px;
  }