ul {
    list-style-type: none;
    margin: 25px 0;
    padding: 0;
    overflow: hidden;
    background-color: #00acc7;
    color: black;
    width: 100%

}
/* ------------------------LI------------------------- */
li {
    float: none;
    display: inline;
}


li a {
    display: block;
    color: white;
    text-align: center;
    padding: 0;
    text-decoration: none;
    font-family: 'Lobster', cursive;
    font: 32px "Lobster";
}

/* -----------------------DROP DOWN MENU------------------------- */
/*Based on: https://www.w3schools.com/css/css_dropdowns.asp */
/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px; 
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  /*font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
  font-family: 'Lobster', cursive;
  font: 32px "Lobster";
}

/* hoverlinks */
.dropdown-content a:hover {
  background-color: #96dce8;
    
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/* this affects the bar */
li a, .dropbtn {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: #96dce8; */ /* this is the shadow light blue hover stuff */
}

li.dropdown {
    display: inline-block; /* this is where it hangs off the nav */
}


/* Actual dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #00acc7;
    min-width: 160px;
    margin-top: 3px;
    /* Dropdown menu shadow */
    /*box-shadow: 0px 8px 16px 0px;*/
    /*color: aquamarine; */
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font: 19px "Montserrat";
}

 /*.dropdown-content a:hover {background-color: #f1f1f1}*/

.dropdown:hover .dropdown-content {
    display: block;
}

/* -----------------------"GLOW" TEXT------------------------- */
a {
  letter-spacing: .1em;
  transition: text-shadow .3s;
}

a:hover {
  text-shadow: 0 0 .65px #333, 0 0 .65px #333;
  text-shadow: 0 0 .9px #333, 0 0 .9px #333, 0 0 .9px #333;
}

a {
  text-decoration: none;
  letter-spacing: .1em;
  transition: text-shadow .3s;
}

/*Source: https://www.sitepoint.com/quick-tip-fixing-font-weight-problem-hover-states/ Last visited 4/9/2018*/

/* -----------------------Links------------------------- */
a:visited {
    color: #002025;
}
a:link {
    color: black;
}