:root {
    --blue: #3399CC;
    --midnightblue: #191970;
    --wheat: wheat;
}

* {
  box-sizing: border-box;
}

.header {
    font-size: 2vw;
    background-color: transparent;
    color: var(--midnightblue);
    text-align: center;
    width: 80vmax;
  }

body {
	margin: 0;
	padding: 0;
    font-family:'Monotype Corsiva', cursive;
    line-height: normal;
    color: var(--midnightblue);
    overflow: hidden; 
}

hr {
  margin: 2vh 0vw;
  padding: 0;
}

h1{
  padding: 0;
  margin-bottom: 1.5vh;
}

h2 {
  text-align: center;
  margin: 0.25vh;
  padding: 0.25vh;
}

h3 {
  margin: 0.5vh;
  padding: 1.125vh;
}

p {
  margin: 2vh;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.bg-img {
    background-image: url("WaterBKG05.jpg");
    background-color: var(--blue);
    width: 100%;
    height: 100%;
    background-position: top left;    
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-text {
  font-weight: bold;
  font-size: 1.75vw;
  text-align: center;
  position: relative;
  top: 0%;
  left: 0%;
  color: var(--midnightblue);
  overflow: hidden; 
} 

div.a {
  font-family: "Cambria", Georgia, Times, 'Times New Roman', serif;
  font-style: italic;
  color: var(--midnightblue);
  font-size: 1.25vw;
  line-height: normal;
  text-align: left;
}

div.b {
    line-height: 1.6;
    text-align: left;
    text-indent: 3vw;
}

div.c {
    font-size: 1.75vw;
    text-align: left;
    margin-left: 2vw;
    text-indent: -2vw;
}

.button {
  overflow: hidden;
  background-color: transparent;
  outline: thick ridge wheat;
  border-style: ridge;
  border-color: var(--midnightblue);
  position: relative;
  left: 1vw;
  margin-top: 0;
  margin-bottom: 1.25vh;
  display: inline-block;
}
  
/* Style the topnav links */
.button a {
  float: left;
  display: block;
  color: var(--midnightblue);
  text-align: center;
  padding: 0.25vw 3vw;
  text-decoration: none;
}

/* Change color on hover */
.button a:hover {
  background-color: var(--blue);
  color: wheat;
}

  .column {
    float: left;
  }
  .column.leftb {
    width: 10%;
    margin-top: 22.5vh;
    margin-left: 1vw;
    margin-right: 0vw;
  }
  .column.rightb {
    width: 88%;
  }        
      
  /* Middle column */
  .column.middle {
    width: 47%;
    padding-left: 1.5vw;
  }

  .column.right {
      width: 41%;
      padding-left: 8vw;
      margin-right:0.25vw;
    }
   
  /* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
  }

  /* Style the top navigation bar */
  .topnav {
      overflow: hidden;
      background-color: transparent;
      border-style: ridge;
      border-color: var(--midnightblue);
      position: relative;
      left: 1vw;
      margin-top: 0;
      margin-bottom: 1.25vh;
      width: 82vmax;
    }
  
  /* Style the topnav links */
  .topnav a {
    float: left;
    display: block;
    color: var(--midnightblue);
    text-align: center;
    padding: 0.25vw 3vw;
    text-decoration: none;
  }
  
  /* Change color on hover */
  .topnav a:hover {
    background-color: var(--blue);
    color: wheat;
  }
  
  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  @media screen and (max-width:600px) {
    .column {
      width: 100%;
    }
  }

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
  
li::before {
    font-family: "Material Icons";
    font-size: 60%;
    font-weight: 100;
    display: inline-block;
    vertical-align: middle;
    content: '\e798';
}

.footer {
  overflow: hidden;
  background-color: transparent;
  border-style: ridge;
  margin: auto 0vw 0vh 0vw;
  padding: 0vw 0vw;
  font-size: 1.5vw;
  border-color: var(--midnightblue);
  display:flex; 
  flex-direction:column;
  line-height: 0.8;
  min-height: 1vw;
  left: 12vw;
  width: 82vmax;
  }

.footer a {
  font-family: "Cambria", Georgia, Times, 'Times New Roman', serif;
  font-style: italic;
  color: var(--midnightblue);
  font-size: 1.25vw;
  text-align: center;
  text-decoration: none;
  margin-bottom: 0.5vw;
  top: 0%;
  left: 0%;
}

.footer a:hover {
  background-color: var(--blue);
  color: wheat;
}