/*-------------------------
	Simple reset
--------------------------*/


*{
	margin:0;
	padding:0;
}

/*-------------------------
	General Styles
--------------------------*/

html{
	/*background:url('../img/background.jpg') #fefefe;*/	
	position:relative;
}

body{
    padding: 0 0 0;
	font:14px/1.3 'Segoe UI',Arial, sans-serif;
	min-height:500px;
	background-color:#0F2A43;
	-webkit-background-size: cover;
              -moz-background-size: cover;
              -o-background-size: cover;
              background-size: cover;
}

a, a:visited {
	text-decoration:none;
	outline:none;
	color:#FF0000;
}

a:hover{
	text-decoration:underline;
}

section, footer, nav{
	display: block;
}

/*----------------------------
	The Footer
-----------------------------*/

footer{
	background-color:#FFFFFF;	
	/*box-shadow: 0 -1px 2px #111111;*/
	bottom: 0;
	border-bottom: 2px solid #FFFFFF;
	height: 85px;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 100000;
	display: flex;
    justify-content: center;
}


