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

nav {
	float: right;
	padding-right: 20px;	
}

body {
	background-size: 100% 100%;
	width: 100%;
	background: white;
	margin-left: auto;
	margin-right: auto;
	font-family: arial;
}

.content{
	background: white;
	width: 60%;
	max-width: 1024px;
	padding: 1%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;		
}


nav ul li {
	list-style-type: none;
	padding-left: 20px;
	text-align: right;
	display: inline-block;
}

nav ul li a {
	text-decoration: none;
	color: #2BA273;
}

.hero-box {
	height: 338px;
	background-position: center;
	background-color: #000000;
	background-image: url("images/banner.jpg");
	background-size: cover;
	margin: 1%;
}

.iceland-box {
	height: 554px;
	background-position: center;
	background-color: #000000;
	background-image: url("images/iceland_w&b.jpg");
	background-size: cover;
	margin: 1%;
}

.n-lights-box {
	height: 690px;
	background-position: center;
	background-color: #000000;
	background-image: url("images/northern_lights_art.jpg");
	background-size: cover;
	margin: 1%;
}


h1 {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #FEFEFE;	
	font-size: 55px;
	padding-top: 120px;
	padding-left: 60px;
}

h2 {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #000000;	
	font-size: 35px;
	margin-left: 5px;
	margin-right: 10px;
}

h3 {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #000000;	
	font-size: 25px;
	margin-left: 5px;
	margin-right: 10px;
}


p {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #000000;	
	font-size: 22px;
	margin-left: 5px;
	margin-right: 10px;
}

.col img {
	width: 100%;
	height: auto;
	display: block;
}

.col {
	width: 31.3%;
	float: left;
	margin: 1%;
}


/*MOBILE*/
@media (max-width:400px){
	.content{
		max-width: 400px;
	}
	h1 {
		font-size: 28px;
	}
	
	h2 {
		font-size: 16px;
		padding-left: 0px;
	}
	
	h3 {
		font-size: 16px;
		padding-left: 0px;
	}

	.col {
		width: 98%;
	}
	
	.hero-box {
		height: 231px;
	}

	.iceland-box {
		height: 220px;
	}

	.n-lights-box {
		height: 273px;
	}


	nav ul li {
		display: block;
	}
	
	.hidden-xs {
		display: none;
	}
}




/*TABLET*/
@media (max-width:768px){
	.content{
		max-width: 768px;
	}
	h1 {
		font-size: 40px;
		text-align: center;
		padding-left: 0px;
	}
	
	h2 {
		font-size: 20px;
		padding-left: 0px;
	}
	
	h3 {
		font-size: 18px;
		padding-left: 0px;
	}

	.col {
		width: 48%;
	}
	
	.hero-box {
		height: 301px;
	}

	.iceland-box {
		height: 419px;
	}

	.n-lights-box {
		height: 520px;
	}

		
	nav ul li {
		display: block;
	}
}




