body{
	font-family: serif;
	text-align: left;
	font-size: 12pt;
	color: #fff;
	background-color: #000000;
	}

#title{
	position: fixed;	
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 72pt;
	z-index: 1;	
	left:25vw;
	right:25vw;
   	top:50%;
   	transform: translateY(-50%);
   	text-shadow: 0px 0px 5px white;
   	  -webkit-animation: glow 3s ease-in-out infinite alternate;
  -moz-animation: glow 3s ease-in-out infinite alternate;
  animation: glow 3s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #fff;
  }
  to {
    text-shadow: 0 0 15px #fff;
  }
}

#footer{
position: fixed;	
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;	
	left:5%;
   	top:10%;
 }



#copy{
	position: fixed;	
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;	
	left:32vw;
	right:32vw;
   	top:50%;
   	transform: translateY(-50%);
	}

ul {
	list-style: none;
	padding:0;
	margin:0;
}

li {
	margin: 0;
	padding: 0;
}

img {
	min-height: 100vh;
	min-width: 100vw;
/*	filter: blur(2px);*/
	justify-content: center;
	filter: brightness(70%)

}


.slide-wrap{
	position: fixed;
	top: 0;
	left: 0;
	min-height: 100vh;
	min-width: 100vw;
	display: flex;
}

.slide {
	min-width: 100vw;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

 /* unvisited link */
a:link {
  color: white;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: white;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: white;
 text-shadow: 0px 0px 5px white;
}

/* selected link */
a:active {
  color: white;
  text-decoration: none;
} 

@media only screen and (max-width: 800px) {
body{
	font-size: 10pt;
	}

#copy{
	left:7vw;
	right:7vw;
	}

#title{
	font-size: 48pt;
	left:7vw;
	right:7vw;
}

#footer{
	left:7vw;
   	top:7vh;
 }
}