/* =========================
   BASE LAYOUT
   ========================= */

html,
body {
  margin: 0;
  display: flex;
  justify-content: flex-end; /* pushes content to the right */
  padding-right: 120px;
  height: 100%;
}

body {
  background-image: 
    url("/shrines/ghostjungle/images/ghostjunglebg.gif"),
    url("/shrines/ghostjungle/images/junglebg.jpg");
  background-repeat:
    no-repeat,
    no-repeat;
  background-position:
    top left,
    center center;
  background-size:
    auto 100vh,
    cover;
  background-attachment: 
    fixed,
    fixed;
  font-family: "Courier New";
}


/* =========================
   IFRAME
   ========================= */

iframe {
  width: 800px;
  height: 1000px;
  background: transparent; /* allows page behind to show */
  border: none;
  display: block;
  margin-top: 20px;
}
