body {
    font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace; 
    font-size: 23px;
    background: #0f0f0f;
    color: #fff;
    /* background-image: url(BACKGROUND IMAGE FILE NAME GOES HERE); */
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    text-transform: lowercase;
    }
div.navigation {
    position: absolute;
    left: 0px;
    top: 0px;
}
div.text {
    display: block;
    position:absolute;
    z-index: 1;
    left: 5%;
    top: 25px;
    text-align: left;
    overflow-y: auto;
    margin-right: 23px;
    max-height: 90%;
    min-width: 50%;
    max-width: 67%;
    }
div.menu {
    display: block;
    position:fixed;
    z-index: 2;
    right:5%;
    padding-right: 23px;
    top:25px;
    text-align: left;
    overflow-y: scroll;
    max-height: 90%;
    max-width: 20%;
    }
div.mobile {
    display: none;
    position: absolute;
    right: 5%;
    top: 25px;
    text-align: left;
    max-height: 5%;
    max-width: 5%;
    font-size: 51pt;
}
h1, h2 {
    color: rgba(255,255,255,0.7);
    font-weight: bold;
    transition: 0.417s;
    -webkit-transition: 0.417s;
  }
a {
    text-decoration: none;
    color: rgba(223,223,223,0.7);
}
a:hover {
    color: rgba(223,223,223,0.7);
    background-color: rgba(23,23,123,0.7);
    transition: 0.417s;
    -webkit-transition: 0.417s;
  }
h1:hover {
    color: rgba(0,0,123,0.7);
    transition: 0.417s;
    -webkit-transition: 0.417s;
  }
h2:hover {
    color: rgba(0,0,123,0.7);
    transition: 0.417s;
    -webkit-transition: 0.417s;
  }
pre {
    white-space: pre-wrap;
    font-family: inherit;
}
canvas {
  display: block;
}

/* styles for mobile screens */
@media screen and (orientation: portrait) {
  /* styles for portrait mode */
  div.text {
    max-width: 90%;
    z-index: 1;
  }
  div.menu {
    display: none;
    max-width: 90%;
    background-color: #0f0f0f;
    position:fixed;
    z-index: 2;
    left:5%;
    top:25px;
    text-align: left;
    overflow-y: scroll;
    max-height: 90%;
    max-width: 90%;
    font-size: 51pt;
  }
  div.mobile {
    display: block;
    position: absolute;
    z-index: 1000;
    right: 5%;
    top: 25px;
    text-align: left;
    min-height: 5%;
    max-width: 5%;
    }
    
  #nav-links {
    display: none;
  }

}

#nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
}


#nav-links.show {
  display: block;
  flex-direction: column;
}
