/*FONTS*/
@import url('https://fonts.cdnfonts.com/css/care-dairy');
@import url('https://fonts.cdnfonts.com/css/rogan');

/*CURSOR*/
* {cursor: url(https://cur.cursors-4u.net/nature/nat-7/nat693.cur), auto !important;}

  body {
      background-image: url("/officegraphix/aerobg.jpg");
      background-repeat: no-repeat;
      background-position: center center;
      background-attachment:fixed;
      background-size:cover;
      height: 100%;
}

  text {
    font-family: 'Care Dairy', sans-serif;
    font-size: 30px;
}

.container {
  display: grid;
  grid-gap: 10px;
  grid-template:
    "header header"
    "main main"
    "footer footer"
    / 100px 1fr;
}

header { grid-area: header; }
main { grid-area: main; }
footer { grid-area: footer; }
  