@charset "utf-8";
<style>


body, html {
	
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

em {
	color: blue;
	} 
strong {
	color: red;
}
img {
    background: black;
	border-radius: 12px;

}
ul {
	list-style-type:none;
	margin:0;
	padding:0;
	display:flex;
	flex-direction: column;
}

#main {
   height: 60%;
   display: -webkit-flex;
   display:         flex;
   flex-flow: row;
}
#main article {
	font-family: Arial, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: #FBF9F9;
	flex: 3 1 80%;
	order: 2;
}
#main aside {
	font-family: Arial, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: #FFCD5C5C;
	background: linear-gradient(to right, #BCA9F5 0%, #FFFFFF 100%);
	flex: 1 6 20%;
	order: 3;
}



header {
	font-family:'Caesar Dressing', cursive, Arial, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 37pt
	display: block;
	min-height: 10%;
	background: #BD2326;
}
footer {
	font-family: Arial, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	display: block;
	min-height: 10%;

	background: #BD2326;
}
nav {
	font-family: sans-serif, Arial;
	color: #FFFFFF
	width: 90px
}
nav, ul {
	list-style-type:none;
	margin:0;
	padding:0;
	display:flex;
	flex-direction: column;
}
li { flex-grow: 1; }
nav, a{
	display:block;
	padding:1em;
	background: linear-gradient(to right, #FFFFFF 0%, #BD2326 100%);
	background-color:#BD2326 ;
	text-align:center;
	margin-bottom:0.2em;
	text-decoration:none;
	color:#000000;
}
nav, a:hover {background-color:LightCoral; }
	

</style>

