body {
  font-family: "Candara", "Open Sans", sans-serif;
  font-size:16px;
  color: white;
  }
  
a {
    color: #689e43;
  }
  
.tiny {
  font-size: 9px;
  margin: 0 auto;
  text-align: center;
  }
  
/*Everything in the main box goes in this*/
.wrapper {
  width: 750px;
  border: 3px solid black;
  margin: 0 auto;
  top: 0px;
  }
  
  .highlight{
    display: inline-block;
    padding: .25em 0;
    background: #000000;
    color: #b0b8ba;
    font-family: courier;
}
  
.header {
  height: 150px;
  border-bottom: 3px solid black;
  margin: 0 auto;
  overflow: hidden;
  background-image: url("/head4.png"); /*Header image -- replace with your own!*/
  background-size:cover;
  background-position: top;
  }
  
/*This and the header-title class are deprecated now that this style uses a background image for the header div.*/
/*.header img {
  display: block;
  opacity: 0.35;
  width: 100%;
  height: 100%;
  overflow: hidden;
  }
*/

 /*If you want to use a smaller title or normal text, add .header p or .header h4 or whatever to the list*/
.header h2, .header h3, .header h1 {
  font-family: courier;
  font-weight: bold;
  color: white;
  text-align: center;
  border: 0px solid green;
  margin: 18% auto; /*approx centered*/
  opacity: 0.999999;
}

.links {
  background: black;
  padding: 10px;
  border-bottom: 3px solid black;
  }
  
/* Style the navigation menu */
.navbar {
  width: 100%;
  background-color: black;
  overflow: auto;
}

/* Navigation links */
.navbar a {
  float: left;
  margin: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: white;
  text-decoration: none;
  font-size: 17px;
  width: 25%;
  text-align: center; /* If you want the text to be centered */
}

/* Add a background color on mouse-over */
.navbar a:hover {
  background-color: #555;
}

/* Style the current/active link */
.navbar .active {
  background-color: #567f3b;
}

/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 500px) {
  .navbar a {
    float: left;
    width: 100%;/* If you want the text to be left-aligned on small screens */
  }
}

/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 500px) {
  .navbar a {
    float: left;
    width: 100%;/* If you want the text to be left-aligned on small screens */
  }
}

.main {
  padding: 15px;
  margin: 0 auto;
  background: #222222;
  border-top: black 3px;
  }
  
/*Prevent overflow of large images in main text areas.*/
.main img {
  display: block;
  object-fit: cover;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  }
  
.footer {
  background: black;
  padding: 20px;
  padding-top:5px;
  padding-bottom:5px;
  border-top: 3px solid black;
  font-size:14px;
  }
  
.box {
  background: black;
  padding: 5px;
  padding-left: 20px;
  font-size: 15px;
  width: auto;
  color: #999999;
  font-family: candara, open sans, sans-serif
  }
  
  
/*For narrow screens*/
@media(max-width: 790px) {
  .wrapper {
    width: 95%;
    }
  .header h1, .header h2, .header h3 { /*Vertical centering gets wonky when the box is variable width*/
    margin: 20% 5% auto;
    }
  }  

/*Mobile compatibility*/
@media(orientation: portrait) {
  .wrapper {
    width: 95%;}
  .header {
    height:230px;
    }
  .header h1, .header h2, .header h3 {
    margin: 20% 3% auto;
    }
  }