body {
  background-image: url("images/water1.gif");
  font-family: "Trebuchet MS", "Fraunces", "Open Sans", sans-serif;
  font-size:16px;
  color: white;
  }
  
a {
    color: #81DACA;
    font-weight: bold;
    text-decoration: none;
  }
a:hover {
    text-decoration: underline;
}
  
  h1 {
    margin-top: 0px;
  }
  
.tiny {
  font-size: 9px;
  margin: 0 auto;
  text-align: center;
  }
  
 /* Width */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #101d4a;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #5278ff; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #305bf0; 
}
  
/*Everything in the main box goes in this*/
.wrapper {
  width: 750px;
  border: 3px solid #040914;
  margin: 0 auto;
  top: 0px;
  }
  
.header {
  background: #040914;
  height: 300px;
  border-bottom: 3px solid #040914;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(rgb(0,0,0,0.7),rgb(0,0,0,0.7)), url("/images/otters.jpg"); /*Header image -- replace with your own!*/
  background-size:cover;
  }
  
/*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-weight: bold;
  color: white;
  text-align: center;
  border: 0px solid green;
  margin: 18% auto; /*approx centered*/
  opacity: 0.999999;
}

.links {
  background: #040914;
  padding: 10px;
  border-bottom: 3px solid #040914;
  }
  
.links a {
  color: white;
  padding: 3px;
  margin-left: 5px;
  margin-right:5px;
  text-decoration: none;
  font-size:17px;
  }

.main {
  padding: 15px;
  margin: 0 auto;
  background: #151a26;
  }

.flex {
    display: flex;
    margin: 0 0 1em 0;
}

.flexleft {
    margin: 0 10px 0 0;
}

.flexleft, .flexright {
    display: inline-flex;
    height: 300px;
    border: 1px solid #444444;
    max-width: 50%;
    max-height: 300px;
    object-fit: cover;
}

.leftimg {
  width: 300px;
  height: 300px;
}

section {
    margin-left: 1em;
    display: block;
}
  
/*Prevent overflow of large images in main text areas.*/
.main img {
  max-width: 100%;
  height: auto;
  }
  
.footer {
  background: #040914;
  padding: 20px;
  padding-top:5px;
  padding-bottom:5px;
  border-top: 3px solid #040914;
  font-size:14px;
  }
  
  
/*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;
    }
  }