 /* #00319c (blue), #7e8691 (gray), #009c9c (aqua), #ffffff (white) */

 .wrapper {
    text-align: center;
    background-color: #00319c;
    /* margin-left: 25%; */
    margin-top: 4.5%;
 }
/*update font family and standardized font sizes throughout*/
 body {
    color: #ffffff;
    font-family: verdana, tahoma, sans-serif;
    font-size: 2vw; 
    background-image: url("images/Aqua Orange.jpeg");
 }

 .navMenu {
   list-style-type: none;
   margin: 0;
   padding: 0;
   width: 25%;
   background-color: #ffffff;
   float: left;
 }
 .navList a {
    display: block;
    padding: 2em;
    text-decoration: none;
 }
 
 .navList a.active {
    background-color: #00319c;
    color: #ffffff; 
 }

 .navList a:hover:not(.active) {
    background-color: #00319c;
    color: #ffffff;

 }

 #donateForm {
  text-align: left;
  margin-left: 35%;
 }

 .button {
  display: inline-block;
  font-size: 3vw;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #026b81;
  background-color: turquoise;
  border: none;
  border-radius: 1vw;
  box-shadow: 0 .5vw #008279;
 }

 .button:hover {
  color: #000000;
  background-color: #ffffff;
 }

 .button:active {
  box-shadow: 0 .25vw #768200;
  transform: translateY(.2vw);
 }

/*  .navList {
   display: inline;
   padding-left: 1em;
 } */

/*  a:link {
   color: #1919ad;
   text-decoration: none;
 }

 a:visited {
   color: #5b5b5b;
   text-decoration: none;
 }

 a:hover {
   color: #ffffff;
   text-decoration: underline;
 }

 a:active {
   color: red;
   text-decoration: none;
 } */

 .fa:link {
  color: #1919ad;
  text-decoration: none;
 }

 .fa:visited {
   color:#000000; 
   text-decoration: none;
 }

 .fa:hover {
  color: #ffffff;  
  text-decoration: none;
 }
 
 .fa:active {
  color: red;
  text-decoration: none;

 }
 .noBullet {
    list-style-type: none;
 }

 #listItalic {
    font-style: italic;
 }

 .headingLeft {
   text-align: left;
 }

 .headingRight {
   text-align: right;
   float: right;
 }

 table {
   clear: right;
 }

 th,td{
   padding-right: 20em;
   padding-bottom: 1em;
 }

 .footer {
    background-color: #7e8691;
    font-family: Times, garamond, serif;
 }

 @media screen and (max-width: 880px) {
    nav {
      overflow: hidden;
      background-color: aqua;
  }

  .navMenu {
    clear: left;
    width: 100%;
  }

  .navList {
    float: left;
  }

  .navList a {
    display: block;
    text-align: center;
    padding: .5em;
    font-size: 1.5em;
    text-decoration: none;
  }

  .wrapper {
    margin-left: 0;
  }

 }
 
 @media print {
    nav, .navMenu {
      display: none;
    }

    .wrapper {
      margin-left: 0;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }
 }