@media print {
    @page :first {
        /* This targets only the first printed page */
    }

    .cover-page {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        /* Bottom alignment */
        min-height: 100vh;
        /* Full page height */
        box-sizing: border-box;
    }
}

*       {margin:0px; padding:0px;}

body    { font-size:10pt; font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; color:#000000; background-color:#ffffff; background-image: url('skull.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-attachment: fixed; /* Optional: keeps it there while scrolling */
  background-size: auto;        
  min-height: 100vh;            /* Ensures the body covers the full screen */}

p       {margin:25px; text-indent:25px; }

h1      { font-size:53pt; font-style:italic; }
h2      { font-size:48pt; font-style: italic; font-weight:bold; }
h4      { font-size: 33pt; font-style: italic; }

li      { margin-left:30px; }