body {
    margin: 0;
    padding: 0;
    min-height: 100vh
  }
  
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('eaglesrage.JPG');
    background-size: 200px 200px;
    background-position: top left;  /* start tiling from the corner */
    background-repeat: repeat;
    background-color: black;
    z-index: -1;
    pointer-events: none;
  }

  .help{
    width: 80%;      /* make it take 80% of its container width */
  aspect-ratio: 16 / 9; /* keeps correct video proportions */
  height: auto;    /* let height adjust automatically */
  display: block;
  margin: 0 auto;  /* center it */
}

@media (max-width: 600px) {
  .help{
    max-width: 100%;
    max-height: 100%;
  }
}


  
  