/* Author:  Isaac Shanholtz */

body {
  font-family: "Lucida Console","Lucida Sans Typewriter",monaco,"Bitstream Vera Sans Mono",monospace;
  /*font-family: Consolas,monaco,monospace;
  /*font-family: garamond, serif;*/
  font-size: 14pt;
  /*background-color: white;*/
  margin: 0px;
  padding: 0px;
}

header {
  background-image: url("../img/pgh_background.jpg");
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  font-size: 18pt;
  /*background-color: lightblue;/*#449944;/*#fffcf2;*/
  color: black;
  padding: 0px;
  margin: 0px;
  height: 100vh;
  /*background-size: cover;*/
}

header h1 {
    font-size: 60pt;
    font-weight: bold;
    padding-top: 100px;
    padding-bottom: 50px;
    margin: 0px;
    text-shadow: 1px 1px 2px black;
    font-family: Papyrus,fantasy;
}

nav {
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 1000;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    font-size: 20pt;
    transition: 0.3s;
}

/*nav ul li:hover {
    border-top: 3px solid white;
    border-bottom: 3px solid white;
}*/

nav ul a {
    color: white;
}

nav ul li:hover {
    color: yellow;
    border-top: 3px solid white;
    border-bottom: 3px solid white;
}

nav ul a#current {
    color: yellow;
}

nav ul a:hover {
    color: yellow;
}

a {
  text-decoration: none;
}

a:hover {
  color: red;
}

main {
  float: left;
  min-width: 700px;
  max-width: 1000px;
  padding-left: 5mm;
  line-height: 1.5em;
}

.left {
    float: left;
}

.right {
    float: right;
}