@charset "utf-8";
/* CSS Document */

body{
    padding: 0px;
    background: #025F67;
    margin-right: 19px;
    margin-left: 17px;
}
nav{
	background: #006286;
	width: 100%;
	overflow: auto;

}
ul{
	margin: 0;
	padding: 0;
	list-style: none;
	float: right
}
li{
	float: left;
}
nav a{
	width: 120px;
	display: block;
	text-decoration: none;
	text-align: center;
	background: #015247;
	font-size: 17px;
	color: white;
	padding: 20px 10px;
	font-family: Raleway , sans-serif;
}
nav a:hover{
	background: skyblue;
	color: black;
}
h1{
	color: #FFFFFF;
	font-family:"Raleway" ,sans-serif;
	font-size: 62px;
	font-weight: 800;
	line-height: 72px;
	text-transform: uppercase;
	background-color: #000000;
	letter-spacing: -2px;
	margin: 30px 0 50px; 
	text-align: center;
}
.container{
	align-content: center;
	position: absolute;
	display: flex
}
.gallery{
    align-content: center;
    position: absolute;
    marg: 10px 110px;
    max-width: 1200px;
}
.gallery img{
    width: 280px;
    padding: 8px;
    filter: grayscale(80%);
    transition: 1s;
    margin-right: auto;
}
.gallery img:hover{
	filter: grayscale(0%);
	transform: scale(2);
}
footer{
	background: #001A1A;
	color:#979A9B; 
	text-align: center;
	font-family: Raleway , sans-serif;
	padding: 0px;
	margin-right: 19px;
	margin-left: 17px;
	height: 50px;
}
