@import url(https://fonts.googleapis.com/css?family=Overlock:400,900,900italic,700italic,700,400italic);

/* GENERAL DECLARATIONS */
* {
	margin: 0;
	padding: 0;
}

body  {
	font-family: 'Overlock', sans-serif;
	font-weight:700;
	box-sizing: boder-box;
	background-attachment: fixed;
	background-color: #81BEF7;
	background-image: url(background.png);
	background-repeat: no-repeat;
	background-position: top left;
	width: 100%;
	font-size: 1rem;
}

h1 {
	font-size: 3.5rem;
	font-weight: 900;
}

h2 {
	font-size: 2.6rem;
	font-weight: 900;
}

h3 {
	font-size: 2.0rem;
	font-weight: 900;
}

h4 {
	font-size: 1.6rem;
	font-weight: 900;
}

h5 {
	font-size: 1.2rem;
	font-weight: 900;
}


/* LOGO */

#logo{
	line-height:50px;
	margin-left:5px;
	float:left;
	width: 10%;
	height: 50px;
	background-color: rgba(101,101,101,0.5);
	border-top-left-radius:40px;
	border-bottom-right-radius:20px;
}

/* NAVIGATION */
nav {
	clear:left;
	box-sizing: border-box;
	float: left;
	width: 10%;
	margin-left:5px;
	margin-top:5px;
}

nav ul {
	list-style: none;	/* no image in front of element */
	background-clip: content-box;
	background-color: rgba(101,101,101,0.5);
	border-top-right-radius:25px;
	border-bottom-left-radius:25px;
}



nav ul li {
	background-image: url(nav_background_250_50.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-color: rgba(101,101,101,0.2);
	background-blend-mode: multiply;
	height: 50px;
	margin-left:5px;
	margin-right:5px;
	margin-bottom:3px;
	line-height:50px;
	padding-left:10px;
	font-size:1rem;
}

nav ul li:first-of-type,
nav ul li:last-of-type {
	background-image: none;
	height:6px;
	background-blend-mode: normal;
	background-color: rgba(0,0,0,0);
}

nav ul li:first-of-type,
nav ul li:nth-child(2) {
	border-top-right-radius:20px;
}

nav ul li:last-of-type,
nav ul li:nth-last-child(2) {
	border-bottom-left-radius:20px;
}


/* HEADER */
header {
	padding-left:10px;
	line-height:50px;
	margin-left: 11%;
	margin-top: 30px;
	width:60%;
	height: 50px;
	background-color:rgba(101,101,101,0.5);
	border-top-right-radius:40px;
	border-bottom-left-radius: 20px;
}


/* MAIN SECTION */ 
#main {
	padding-top:15px;
	padding-left:10px;
	border-top-left-radius:20px;
	margin-left: 11%;
	min-height:600px;
	margin-top:5px;
	background-color:rgba(101,101,101,0.5);
	width:60%;

	
}

/* FOOTER */
footer {
	margin-top:5px;
	padding-top:5px;
	padding-left:10px;
	margin-left: 11%;
	background-color:rgba(101,101,101,0.5);
	width:60%;
	height: 50px;
	border-bottom-left-radius:20px;
	border-bottom-right-radius:20px;
	line-height:50px;
}

