@import url(https://fonts.googleapis.com/css?family=Roboto);

* {
	padding:0;
	margin:0;
}

body {
	font-family: 'Roboto',sans-serif;
	font-size: 15px;
	line-height: 1.5;
	background: url(back.jpg) no-repeat center center fixed rgba(255, 255, 255, 0.8); 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	margin: 0;
}

h1 {
	color: #3366A5;
	font-size: 24px;
	margin: 5px 0 10px;
}

h2 {
	color: #565656;
	font-size: 20px;
	margin: 5px 0 10px;
}

p {
	margin-bottom: 15px;
}

a {
	color: #3366A5;
}

a:hover {
	text-decoration: none;
}

ul {
	list-style-position: inside;
}

#container {
	background-color: rgba(255, 255, 255, 0.7);
	max-width: 950px;
	/*height: 400px;*/
	margin: 0 auto;
	/*margin-left:auto;
	margin-right:auto;*/
	
}

#header {
	
	width: 80%;
	margin: 0 auto;
	padding: 30px 0 10px;
	
}

#header img {
	width: 100%;
}

#content {
	padding: 15px;
}







#footer {
	background-color: #3366A5;
	font-size: 15px;
	color: #ffffff;
}

#footer a {
	color: #ffffff;
}

#footer p {
	padding: 5px 10px;
	text-align: right;
}




@media screen and (min-width:600px) {
	
	body {
		margin: 40px 20px;
	}
	
	#content {
		display:-webkit-flex;
		display:flex;
	}
	
	#main {
		-webkit-flex:3;
		flex:3;	
		-webkit-order:2;
		order:2;
	}
	
	#sidebar {
		-webkit-flex:1;
		flex:1;	
		-webkit-order:1;
		order:1;
	}
	
	#sidebar2 {
		-webkit-flex:1;
		flex:1;	
		-webkit-order:3;
		order:3;
	}
	
}