/* === STYLES === */

@import url('https://fonts.googleapis.com/css?family=Candal|Cardo|Bangers');

nav, footer {
	background: #003354;
	padding: 20px;
	text-align: center;
}

/* === NAV === */

nav {
	margin: 20px 0px;
}

.current {
	color: #fff;
	background: #91bed4;
	text-shadow: 2px 2px #000;
}

nav a {
	padding: 10px;
	font-family: Bangers, sans-serif;
	font-weight: normal;
}

nav a:link {
	color: #d9e8ff;
	text-decoration: none;
	text-shadow: 2px 2px #000;
}

nav a:visited {
	color: #fff;
	text-decoration: none;
}

nav a:hover {
	color: #003354;
	background: #fff;
	text-shadow: 2px 2px #d9e8ff;
}

nav a:active {
	color: #000;
}

/* === LINKS === */

a:link {

	color: #003354;
	text-decoration: underline;

}

a:visited {

	color: #000;

}

a:hover {

	color: #f26101;
	text-decoration: none;

}

a:active {

	color: #f26101;

}

/* === HEADERS === */

h1, h2, h3 {
	font-family: 'Candal', sans-serif;
	font-weight: normal;
	letter-spacing: -2px;
	color: #003354;
}

header h1 {
	text-align: center;
	font-family: 'Candal', sans-serif;
	font-size: 90px;
}

header h2 {
	font-family: 'Cardo';
	font-size: 36px;
	text-align: center;
	text-transform: lowercase;
}

/* === TEXT === */

article p {
	font-family: verdana, sans-serif;
	font-size: 16px;
	text-align: left;
	margin-bottom: 20px;
}

article li {
	font-family: verdana, sans-serif;
	font-size: 16px;
	text-align: left;
	margin-bottom: 20px;
	margin-left: 20px;
}

article ul {
	padding-left: 10px;
}
aside p {
	font-family: verdana, sans-serif;
	font-size: 12px;
	text-align: left;
	line-height: 16px;
	margin-bottom: 20px;
}

aside li {
	font-family: verdana, sans-serif;
	font-size: 12px;
	text-align: left;
	margin-top: 5px;
	margin-bottom: 10px;
	margin-left: 20px;
}

footer p {
	font-family: verdana, sans-serif;
	color: #91bed4;
	font-size: 12px;
	text-align: center;
	line-height: 16px;
	padding-top: 10px;
}

footer a:link {
	margin: 5px 10px 5px 10px;
	padding-bottom: 10px;
	color: #91bed4;
}

footer a:hover {
	color: #fff;
}

/* === CONTACT FORM === */

#formwrapper {
	margin: 20px auto;
	width: 50%;
	padding: 20px;
	background: #ccc;
	border-radius: 10px;
}

input[type=text], input[type=email] {
	width: 60%;
	padding: 10px;
	margin: 0 0 20px;
	display: block;
	border: none;
	border-bottom: 2px solid #003354;
	border-radius: 4px;
	font-size: 20px;
	font-family: Cardo, serif;
	color: #333;
	background: #fff;
	transition: all .3s;
}

input[type=text]:focus, input[type=email]:focus {
	width: 100%;
	background: #eee;
	color: #003354;
	outline: none;
}

input[type=submit], input[type=reset] {
	display: block;
	width: 40%;
	background: #003354;
	color: #fff;
	padding: 10px;
	margin: 14px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 22px;
	font-family: Cardo, serif;
	box-shadow: 1px 1px 15px #000;
	outline: none;
	transition: all .3s;
}

input[type=submit]:hover, input[type=reset]:hover {
	background: #f26101;
	color: #fff;
}

textarea {
	display: block;
	width: 100%;
	height: 150px;
	padding: 10px;
	border-radius: 4px;
	border: 2px solid #003354;
	background: #fff;
	font-size: 16px;
	font-family: Cardo, serif;
	resize: none;
	color: #ccc;
	margin-bottom: 24px;
	outline: none;
	transition: all .3s;
}

textarea:focus {
	background: #fff;
	color: #003354;
	outline: none;
}

label {
	font-family: Cardo, serif;
	font-size: 24px;
	color: #003354;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 0px;
}

#email_address {
	display: none;
}

/* === Tablet size === */

@media only screen and (max-width: 768px) {

	header h1 {
		font-size: 36px;
	}

	header h2 {
		font-size: 22px;
	}
}

/* === Phone size === */

@media only screen and (max-width: 480px) {

	header h1 {
		font-size: 24px;
	}

	header h2 {
		font-size: 18px;
	}
}