.sidenav a {
	text-decoration: none;
}

.sidenav a:visited {
	color: blue;
}

.sidenav a:hover {
    color: #f1f1f1;
	background-color: gray;
}

.list {
    list-style: none;
    margin:0 auto;
    padding: 0;
    display: inline;
}

.sublist{
   display:none;
   position: absolute;
   z-index: 10;
}

.listItems:hover .sublist {
	display:block;
}

.sublistItems a:hover {
    color:white;
}

.listItems {
    display: inline-block;
	margin:0;
	color:blue;
	padding: 0 3vw 0 3vw;
	text-align: center;
}

ul {
  padding: 0px;
}

.glow1, .glow2 {
  display:block;
  background-color: black;
  color: #0000FF;
  text-align: left;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

.glow1:hover, .glow2:hover {
    color:white;
    color: #f1f1f1;
	background-color: gray;
}

.glow2:hover .sublist {
	display:block;
}

@-webkit-keyframes glow {
  from {
     text-shadow: 0 0 10px #0000FF, 0 0 20px #0000FF, 0 0 30px #e60073, 0 0 40px #e60073,
      0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
  
    text-shadow: 0 0 20px #0000FF, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 
    0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
  
}
