@charset "UTF-8";
/* CSS Document */

body{
	margin: 0px;
	padding: 0px;
background: #00d2ff;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #3a7bd5, #00d2ff);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #3a7bd5, #00d2ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

	
}

h1{
	color: white;
	font-family: 'railway',sans-serif;
	font-size: 62px;
	font-weight: 800;
	line-height: 72px;
	text-transform: uppercase;
	background-color: black;
	letter-spacing: -2px;
	margin: 30px 0 50px;
	text-align: center;
	
	
}

h2{
	font-family: 'railway',sans-serif;
	font-size: 62px;
	font-weight: 800;
	line-height: 72px;
	text-transform: uppercase;
	text-align: center;
	color: cornflowerblue;
	font-size: 30pt;
	background-color: black;

}

p{
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	text-align: center;
	color: cornflowerblue;

}

	a:link {
		color: cornflowerblue;
	}
	a:visited{
		color: cornflowerblue;
	}
	a:hover{
		color: deepskyblue;
	}
	a:active{
		color: firebrick;
	}


.gallery{
	align-content: center;
	margin: 10px 10px;
	text-align: center;
		
}

.gallery img{
	width: 256px;
	padding: 5px;
	filter: grayscale(80%);
	transition: 1s;
	max-width: 90%;
	
}

.gallery img:hover{
	filter: grayscale(0);
	transform: scale(1.1);
	
}